mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
8 lines
342 B
TypeScript
8 lines
342 B
TypeScript
import { useCurrentTimeEntryStore } from '@/utils/useCurrentTimeEntry';
|
|
|
|
export function initializeStores() {
|
|
// TanStack Query now handles projects, tasks, tags, clients, and members fetching automatically
|
|
// Only initialize stores that aren't migrated to TanStack Query yet
|
|
useCurrentTimeEntryStore().fetchCurrentTimeEntry();
|
|
}
|