From 68f32c36e79f24e6d4b125f489acbfe83bc26a8b Mon Sep 17 00:00:00 2001 From: wbuezas Date: Sun, 29 Sep 2024 21:11:09 -0300 Subject: [PATCH] Redirect to login when init --- src/stores/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stores/app.js b/src/stores/app.js index ece6d4bb..43619b69 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -68,6 +68,7 @@ export const useAppStore = defineStore('hedera', { }, async init() { + this.router.push({ name: 'login' }); this.getBasketOrderId(); this.getLocaleDates(); },