From e36d62f08c489ba3b5f420ecfe53ed07ab978c1f Mon Sep 17 00:00:00 2001 From: JzoNg Date: Thu, 7 Mar 2024 23:00:23 +0800 Subject: [PATCH] hide switch modal --- web/app/components/app-sidebar/app-info.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/app-sidebar/app-info.tsx b/web/app/components/app-sidebar/app-info.tsx index 4b8adcce21..1b073a0f76 100644 --- a/web/app/components/app-sidebar/app-info.tsx +++ b/web/app/components/app-sidebar/app-info.tsx @@ -42,7 +42,7 @@ const AppInfo = ({ expand }: IAppInfoProps) => { const [showDuplicateModal, setShowDuplicateModal] = useState(false) const [showConfirmDelete, setShowConfirmDelete] = useState(false) const [showSwitchTip, setShowSwitchTip] = useState('') - const [showSwitchModal, setShowSwitchModal] = useState(true) + const [showSwitchModal, setShowSwitchModal] = useState(false) const mutateApps = useContextSelector( AppsContext,