From 5765e8de81cd379510f4dd6cf5fd5a11bb317390 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Tue, 31 Oct 2023 16:28:59 +0530 Subject: [PATCH] fix: cleanup `continueAfterSignIn` from localstorage after getting the value Signed-off-by: Pranav C --- packages/nc-gui/pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/pages/index.vue b/packages/nc-gui/pages/index.vue index 9eebe651c5..ccba203f66 100644 --- a/packages/nc-gui/pages/index.vue +++ b/packages/nc-gui/pages/index.vue @@ -93,7 +93,7 @@ onMounted(() => { return navigateTo(route.value.query.continueAfterSignIn as string) } else { const continueAfterSignIn = localStorage.getItem('continueAfterSignIn') - + localStorage.removeItem('continueAfterSignIn') if (continueAfterSignIn) { return navigateTo({ path: continueAfterSignIn,