Skip to content

Commit

Permalink
Update app/src/services/feature-flags/LocalFeatureFlagManager.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Sawyer Hollenshead <[email protected]>
  • Loading branch information
aligg and sawyerh authored Dec 7, 2023
1 parent 68da9d5 commit 354b7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/services/feature-flags/LocalFeatureFlagManager.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export class LocalFeatureFlagManager {
async isFeatureEnabled(featureName: string, userId: string) {
console.log(
`Using mock feature flag manager for feature ${featureName}, user ${userId}`
"Using mock feature flag manager", { featureName, userId }
);
return Promise.resolve(false);
}
Expand Down

0 comments on commit 354b7ec

Please sign in to comment.