Fix store import

This commit is contained in:
Andreas Hocevar
2025-02-20 00:51:42 +01:00
parent ed297d3067
commit d6fbbba245

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;