Skip to content

Commit

Permalink
chore: update InternalTools to use correct feature flag for creator t…
Browse files Browse the repository at this point in the history
…ool access
  • Loading branch information
bigint committed Sep 5, 2024
1 parent a92ddab commit 6b4f2e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/Profile/InternalTools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface InternalToolsProps {

const InternalTools: FC<InternalToolsProps> = ({ profile }) => {
const hasGardenerToolAccess = useFlag(FeatureFlag.Gardener);
const hasCreatorToolAccess = useFlag(FeatureFlag.Staff);
const hasCreatorToolAccess = useFlag(FeatureFlag.CreatorTools);

if (!hasGardenerToolAccess && !hasCreatorToolAccess) {
return null;
Expand Down

0 comments on commit 6b4f2e7

Please sign in to comment.