refactor: move qrCodeStore to lib/stores for better organization

The qrCodeStore has been relocated from the app/stores directory to app/lib/stores to maintain a more consistent and organized project structure. This change improves maintainability by centralizing store-related files in a dedicated directory.
This commit is contained in:
KevIsDev
2025-04-18 11:45:14 +01:00
parent f90fd79064
commit c08be2f1fb
5 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ import { LOCAL_PROVIDERS } from '~/lib/stores/settings';
import { SupabaseChatAlert } from '~/components/chat/SupabaseAlert';
import { SupabaseConnection } from './SupabaseConnection';
import { ExpoQrModal } from '~/components/workbench/ExpoQrModal';
import { expoUrlAtom } from '~/stores/qrCodeStore';
import { expoUrlAtom } from '~/lib/stores/qrCodeStore';
import { useStore } from '@nanostores/react';
const TEXTAREA_MIN_HEIGHT = 76;