Fix store import

This commit is contained in:
Andreas Hocevar 2025-02-20 00:51:42 +01:00
parent ed297d3067
commit d6fbbba245
No known key found for this signature in database
GPG key ID: F7FA44133EB59BCD

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;