From 8fb257fa3cb39d7740d110b678e2f1d216c97885 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Fri, 13 Oct 2023 18:45:35 -0700 Subject: [PATCH] nxsetup: fix back button after setup (close #855) Signed-off-by: Varun Patil --- src/native/Setup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/Setup.vue b/src/native/Setup.vue index a042fd15..522fb5f4 100644 --- a/src/native/Setup.vue +++ b/src/native/Setup.vue @@ -138,7 +138,7 @@ export default defineComponent({ this.localFolders = nativex.getLocalFolders(); break; case 4: - this.$router.push('/'); + this.$router.replace('/'); break; } },