Merge pull request #3239 from w3geo/store

Fix store import
This commit is contained in:
Mike Cao 2025-02-19 16:09:44 -08:00 committed by GitHub
commit eebd79d379
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,7 @@
import { setItem } from '@/lib/storage';
import { TIMEZONE_CONFIG } from '@/lib/constants';
import { formatInTimeZone, zonedTimeToUtc, utcToZonedTime } from 'date-fns-tz';
import useStore, { setTimezone } from 'store/app';
import useStore, { setTimezone } from '@/store/app';
import useLocale from './useLocale';
const selector = (state: { timezone: string }) => state.timezone;