From 1f513e3b43abaa88ed1ef33355b8d9c643c5bf97 Mon Sep 17 00:00:00 2001 From: Joel Date: Thu, 23 Oct 2025 18:26:38 +0800 Subject: [PATCH] chore: remove debug code --- web/app/components/explore/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/components/explore/index.tsx b/web/app/components/explore/index.tsx index 13b48b89dc..beafc8b6d1 100644 --- a/web/app/components/explore/index.tsx +++ b/web/app/components/explore/index.tsx @@ -43,8 +43,8 @@ const Explore: FC = ({ return router.replace('/datasets') }, [isCurrentWorkspaceDatasetOperator]) - const [currentTryAppParams, setCurrentTryAppParams] = useState({ appId: '47b94c61-5b0d-402b-b5bb-482ee406bc68' }) - const [isShowTryAppPanel, setIsShowTryAppPanel] = useState(true) + const [currentTryAppParams, setCurrentTryAppParams] = useState(undefined) + const [isShowTryAppPanel, setIsShowTryAppPanel] = useState(false) const setShowTryAppPanel = (showTryAppPanel: boolean, params?: CurrentTryAppParams) => { if (showTryAppPanel) setCurrentTryAppParams(params)