Skip to content

Commit

Permalink
Remove remaining occurences to jupyter-ai repo
Browse files Browse the repository at this point in the history
  • Loading branch information
brichet committed Mar 26, 2024
1 parent 856d487 commit 9a614f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/jupyter-chat/src/components/scroll-container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type ScrollContainerProps = {
*/
export function ScrollContainer(props: ScrollContainerProps): JSX.Element {
const id = useMemo(
() => 'jupyter-ai-scroll-container-' + Date.now().toString(),
() => 'jupyter-chat-scroll-container-' + Date.now().toString(),
[]
);

Expand Down
2 changes: 1 addition & 1 deletion packages/jupyter-chat/src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { LabIcon } from '@jupyterlab/ui-components';
import chatSvgStr from '../style/icons/chat.svg';

export const chatIcon = new LabIcon({
name: 'jupyter-ai::chat',
name: 'jupyter-chat::chat',
svgstr: chatSvgStr
});
4 changes: 2 additions & 2 deletions packages/jupyter-chat/src/widgets/chat-error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ export function buildErrorWidget(
</Box>
</JlThemeProvider>
);
ErrorWidget.id = 'jupyter-ai::chat';
ErrorWidget.id = 'jupyter-chat::chat';
ErrorWidget.title.icon = chatIcon;
ErrorWidget.title.caption = 'Jupyter AI Chat'; // TODO: i18n
ErrorWidget.title.caption = 'Jupyter Chat'; // TODO: i18n

return ErrorWidget;
}

0 comments on commit 9a614f7

Please sign in to comment.