Skip to content

Commit

Permalink
remove duplicate rmRegistry per @krassowski
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-i committed Feb 1, 2024
1 parent e51aa0b commit 5839493
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/jupyter-ai/src/components/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ export type ChatProps = {
chatHandler: ChatHandler;
globalAwareness: Awareness | null;
themeManager: IThemeManager | null;
renderMimeRegistry: IRenderMimeRegistry;
rmRegistry: IRenderMimeRegistry;
chatView?: ChatView;
};
Expand Down
1 change: 0 additions & 1 deletion packages/jupyter-ai/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ const plugin: JupyterFrontEndPlugin<void> = {
chatHandler,
globalAwareness,
themeManager,
renderMimeRegistry,
rmRegistry
);
} catch (e) {
Expand Down
2 changes: 0 additions & 2 deletions packages/jupyter-ai/src/widgets/chat-sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export function buildChatSidebar(
chatHandler: ChatHandler,
globalAwareness: Awareness | null,
themeManager: IThemeManager | null,
renderMimeRegistry: IRenderMimeRegistry,
rmRegistry: IRenderMimeRegistry
): ReactWidget {
const ChatWidget = ReactWidget.create(
Expand All @@ -23,7 +22,6 @@ export function buildChatSidebar(
chatHandler={chatHandler}
globalAwareness={globalAwareness}
themeManager={themeManager}
renderMimeRegistry={renderMimeRegistry}
rmRegistry={rmRegistry}
/>
);
Expand Down

0 comments on commit 5839493

Please sign in to comment.