diff --git a/apps/web/src/components/Account/InternalTools.tsx b/apps/web/src/components/Account/InternalTools.tsx index d650faf775c2..0a2dfd2349a3 100644 --- a/apps/web/src/components/Account/InternalTools.tsx +++ b/apps/web/src/components/Account/InternalTools.tsx @@ -18,14 +18,20 @@ const InternalTools: FC = ({ account }) => { return null; } + const Tools = () => ( + <> + {hasCreatorToolAccess && } + {isStaff && } + + ); + return ( - {hasCreatorToolAccess && } - {isStaff && } + ); };