From cda9108ac5f22abdeaf80a0d2eb42a837e2560fb Mon Sep 17 00:00:00 2001 From: Max Rialto Date: Wed, 22 May 2024 09:03:57 +0200 Subject: [PATCH] used new match localstorage key to prevent migration issues --- src/lib/stores/match.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,