We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c077ba commit ebd3094Copy full SHA for ebd3094
source/lib/storage.ts
@@ -21,11 +21,11 @@ export function setFeatureFlag(
21
name: AppConfigKey,
22
value: boolean,
23
): Promise<void> {
24
- let key = `${featureFlagsKey}:${name}`
+ const key = `${featureFlagsKey}:${name}`
25
return setItem(key, value)
26
}
27
export function getFeatureFlag(name: AppConfigKey): Promise<boolean> {
28
29
return getItemAsBoolean(key)
30
31
0 commit comments