From 023deec229e2f976f8390e01d7905b68fcde5112 Mon Sep 17 00:00:00 2001 From: lby Date: Wed, 2 Oct 2024 10:37:16 +0800 Subject: [PATCH] refactor(web): hide WIP setting pages on tab (#1163) --- web/src/beta/features/AccountAndWorkSpaceSetting/index.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web/src/beta/features/AccountAndWorkSpaceSetting/index.tsx b/web/src/beta/features/AccountAndWorkSpaceSetting/index.tsx index e4a593205..556e4476a 100644 --- a/web/src/beta/features/AccountAndWorkSpaceSetting/index.tsx +++ b/web/src/beta/features/AccountAndWorkSpaceSetting/index.tsx @@ -22,9 +22,10 @@ type Props = { }; export const accountSettingTabs = [ - { id: "account", text: "Account", icon: "user" }, - { id: "workspace", text: "Workspace", icon: "users" }, - { id: "members", text: "Members", icon: "usersFour" } + { id: "account", text: "Account", icon: "user" } + // TODO: enable these when page ready + // { id: "workspace", text: "Workspace", icon: "users" }, + // { id: "members", text: "Members", icon: "usersFour" } ] as const; const AccountAndWorkSpaceSetting: FC = ({ tab }) => {