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 a4789be commit 8cc34c2Copy full SHA for 8cc34c2
modules/app-config/index.ts
@@ -20,6 +20,10 @@ export const useFeature = (featureKey: AppConfigEntry): boolean => {
20
21
// datastore for the __DEV__ feature flags
22
export const AppConfig = async (): Promise<FeatureFlag[]> => {
23
+ if (!isDevMode()) {
24
+ return []
25
+ }
26
+
27
return [
28
{
29
title: 'Show the course search recents screen',
0 commit comments