From 945adcee89279fb8db67f554708bf68654c778cc Mon Sep 17 00:00:00 2001 From: Nate Kelley <133379588+nate-kelley-buster@users.noreply.github.com> Date: Wed, 2 Jul 2025 16:48:11 -0600 Subject: [PATCH] Remove logs (#395) --- .../typography/StreamableText/StreamableText.stories.tsx | 2 +- apps/web/src/context/Chats/NewChatProvider.tsx | 1 - apps/web/src/context/Dashboards/useIsDashboardChanged.tsx | 7 ------- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/apps/web/src/components/ui/typography/StreamableText/StreamableText.stories.tsx b/apps/web/src/components/ui/typography/StreamableText/StreamableText.stories.tsx index 402075712..52655c3aa 100644 --- a/apps/web/src/components/ui/typography/StreamableText/StreamableText.stories.tsx +++ b/apps/web/src/components/ui/typography/StreamableText/StreamableText.stories.tsx @@ -35,7 +35,7 @@ print('Hello llm-ui!') ## Typescript \`\`\`typescript -console.log('Hello llm-ui!'); +console.swag('Hello llm-ui!'); \`\`\` ## YAML diff --git a/apps/web/src/context/Chats/NewChatProvider.tsx b/apps/web/src/context/Chats/NewChatProvider.tsx index 42850dd05..51d826dac 100644 --- a/apps/web/src/context/Chats/NewChatProvider.tsx +++ b/apps/web/src/context/Chats/NewChatProvider.tsx @@ -57,7 +57,6 @@ export const useBusterNewChat = () => { message_id: messageId }); - console.log('res', res); initializeNewChat(res); } diff --git a/apps/web/src/context/Dashboards/useIsDashboardChanged.tsx b/apps/web/src/context/Dashboards/useIsDashboardChanged.tsx index 8c8e62898..cbf11985d 100644 --- a/apps/web/src/context/Dashboards/useIsDashboardChanged.tsx +++ b/apps/web/src/context/Dashboards/useIsDashboardChanged.tsx @@ -64,13 +64,6 @@ export const useIsDashboardChanged = ({ dashboardId }: { dashboardId: string | u ); }, [originalDashboard, isEditor, currentDashboard, isLatestVersion]); - // console.log('isDashboardChanged', isDashboardChanged, { - // originalDashboard, - // currentDashboard, - // isEditor, - // isLatestVersion - // }); - return { onResetDashboardToOriginal, isDashboardChanged