From 7a9c0e53cef49c436c3cbd5a6ab4f1007865e8e6 Mon Sep 17 00:00:00 2001 From: Martichou Date: Tue, 8 Oct 2024 22:02:33 +0200 Subject: [PATCH] fix: store in main Vue app due to upgrade to 2.0.0 of store Signed-off-by: Martichou --- app/main/src/components/HomePage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/src/components/HomePage.vue b/app/main/src/components/HomePage.vue index 5f3df68..b519e41 100644 --- a/app/main/src/components/HomePage.vue +++ b/app/main/src/components/HomePage.vue @@ -182,7 +182,7 @@ export default { }, async setup() { - const store = await createStore(".settings.json", { autoSave: true }); + const store = await createStore(".settings.json", { autoSave: 1 as any }); const toastStore = useToastStore(); const dialogOpen = tauriDialog;