Skip to content

Commit

Permalink
refactor(web): hide WIP setting pages on tab (#1163)
Browse files Browse the repository at this point in the history
  • Loading branch information
airslice authored Oct 2, 2024
1 parent 9ce2dab commit 023deec
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions web/src/beta/features/AccountAndWorkSpaceSetting/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<Props> = ({ tab }) => {
Expand Down

0 comments on commit 023deec

Please sign in to comment.