Skip to content

Commit

Permalink
Fix typo in summarize
Browse files Browse the repository at this point in the history
  • Loading branch information
enzowritescode committed Jul 24, 2024
1 parent 93c7827 commit 1c6bd14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {setOpenRHSAction} from './redux_actions';
import {BotUsername, TelemetryEvents, TelemetrySources} from './constants';
import PostEventListener from './websocket';
import {BotsHandler, setupRedux} from './redux';
import UnreadsSumarize from './components/unreads_summarize';
import UnreadsSummarize from './components/unreads_summarize';
import {PostbackPost} from './components/postback_post';

type WebappStore = Store<GlobalState, Action<Record<string, unknown>>>
Expand Down Expand Up @@ -157,7 +157,7 @@ export default class Plugin {
}

if (registry.registerNewMessagesSeparatorActionComponent) {
registry.registerNewMessagesSeparatorActionComponent(UnreadsSumarize);
registry.registerNewMessagesSeparatorActionComponent(UnreadsSummarize);
}
}
}
Expand Down

0 comments on commit 1c6bd14

Please sign in to comment.