From 406e5d297ba3c2d45734de538c2cad078182190d Mon Sep 17 00:00:00 2001 From: tamaina Date: Fri, 26 May 2023 04:34:34 +0000 Subject: [PATCH] =?UTF-8?q?fix(client):=20/share=E3=82=92subBootPaths?= =?UTF-8?q?=E3=81=8B=E3=82=89=E5=A4=96=E3=81=99=20Resolve=20#10898?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/_boot_.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/_boot_.ts b/packages/frontend/src/_boot_.ts index 921c161765..ac9191f885 100644 --- a/packages/frontend/src/_boot_.ts +++ b/packages/frontend/src/_boot_.ts @@ -5,7 +5,7 @@ import '@/style.scss'; import { mainBoot } from './boot/main-boot'; import { subBoot } from './boot/sub-boot'; -const subBootPaths = ['/share', '/auth', '/miauth', '/signup-complete']; +const subBootPaths = ['/auth', '/miauth', '/signup-complete']; if (subBootPaths.some(i => location.pathname === i || location.pathname.startsWith(i + '/'))) { subBoot();