diff --git a/src/lib/stores/match.ts b/src/lib/stores/match.ts index 25879ec..a1ab00e 100644 --- a/src/lib/stores/match.ts +++ b/src/lib/stores/match.ts @@ -6,7 +6,7 @@ import { derived, get } from 'svelte/store'; function createMatchStore() { const getNewMatch = () => ({ id: new Date().getTime(), games: [] }); - const { subscribe, set, update } = persistentWritable('match', getNewMatch()); + const { subscribe, set, update } = persistentWritable('match_new', getNewMatch()); return { subscribe,