Skip to content

Commit

Permalink
remove var
Browse files Browse the repository at this point in the history
  • Loading branch information
cabella-dot committed Feb 14, 2025
1 parent 8b7878e commit 6b0b572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/featureFlags/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class FeatureFlagClient {
}

public static checkGate(gate: string): boolean {
var gateValue = false;
let gateValue = false;
if (FeatureGates === null) {
console.warn('FeatureGates: FeatureGates is not initialized. Defaulting to False');
} else {
Expand Down

0 comments on commit 6b0b572

Please sign in to comment.