From 47c463cc9040b49daa32130be68014499883c441 Mon Sep 17 00:00:00 2001 From: qingguo Date: Fri, 16 May 2025 15:18:37 +0800 Subject: [PATCH] Fix legacy prefix bug --- web/app/install/installForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/install/installForm.tsx b/web/app/install/installForm.tsx index b0ae436005..c01be722c0 100644 --- a/web/app/install/installForm.tsx +++ b/web/app/install/installForm.tsx @@ -80,12 +80,12 @@ const InstallForm = () => { fetchSetupStatus().then((res: SetupStatusResponse) => { if (res.step === 'finished') { localStorage.setItem('setup_status', 'finished') - router.push(`/signin`) + router.push('/signin') } else { fetchInitValidateStatus().then((res: InitValidateStatusResponse) => { if (res.status === 'not_started') - router.push(`/init`) + router.push('/init') }) } setLoading(false)