Skip to content

Commit

Permalink
fix: correct feature flag name (#1504)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjeatt authored Aug 3, 2023
1 parent 19b2f5c commit 32a72b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/use-feature-flag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ enum FeatureFlags {
}

const featureFlags: Record<FeatureFlags, string | undefined> = {
[FeatureFlags.STRATEGIES]: process.env.REACT_APP_FEATURE_FLAG_EARN_STRATEGIES,
[FeatureFlags.STRATEGIES]: process.env.REACT_APP_FEATURE_FLAG_STRATEGIES,
[FeatureFlags.GEOBLOCK]: process.env.REACT_APP_FEATURE_FLAG_GEOBLOCK,
[FeatureFlags.ONBOARDING]: process.env.REACT_APP_FEATURE_FLAG_ONBOARDING
};
Expand Down

2 comments on commit 32a72b9

@vercel
Copy link

@vercel vercel bot commented on 32a72b9 Aug 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 32a72b9 Aug 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.