From 5b18e7678a75b718e8afc0a245556e7b0a73b326 Mon Sep 17 00:00:00 2001 From: KevIsDev Date: Tue, 17 Jun 2025 22:37:40 +0100 Subject: [PATCH] fix: correct styles import path in ChatBox component --- app/chat/components/chatBox/ChatBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/chat/components/chatBox/ChatBox.tsx b/app/chat/components/chatBox/ChatBox.tsx index 9ab5cbb5..fc270f04 100644 --- a/app/chat/components/chatBox/ChatBox.tsx +++ b/app/chat/components/chatBox/ChatBox.tsx @@ -13,7 +13,7 @@ import { toast } from 'react-toastify'; import { SpeechRecognitionButton } from '~/chat/components/chatBox/SpeechRecognition'; import { SupabaseConnection } from './SupabaseConnection'; import { ExpoQrModal } from '~/shared/workbench/components/ui/ExpoQrModal'; -import styles from '~/chat/BaseChat.module.scss'; +import styles from '~/chat/components/BaseChat.module.scss'; import type { ProviderInfo } from '~/shared/types/model'; import { ColorSchemeDialog } from '~/shared/components/ui/ColorSchemeDialog'; import type { DesignScheme } from '~/shared/types/design-scheme';