From 19080cbb9269e6a3c9cd1167198e3602da7c12a6 Mon Sep 17 00:00:00 2001 From: Drew Volz Date: Sun, 15 Oct 2023 11:43:27 -0600 Subject: [PATCH] remove rn directory feature flag --- modules/app-config/index.tsx | 15 --------------- modules/app-config/types.ts | 1 - 2 files changed, 16 deletions(-) diff --git a/modules/app-config/index.tsx b/modules/app-config/index.tsx index e05aa662a8..413ded2b83 100644 --- a/modules/app-config/index.tsx +++ b/modules/app-config/index.tsx @@ -11,21 +11,6 @@ export {AppConfigKey} from './types' export const AppConfig = async (): Promise => { return [ - { - title: 'Directory', - data: [ - { - title: 'React Native', - data: [ - { - configKey: AppConfigKey.ReactNativeDirectory, - title: 'RN Directory', - active: await getFeatureFlag(AppConfigKey.ReactNativeDirectory), - }, - ], - }, - ], - }, { title: 'StoPrint', data: [ diff --git a/modules/app-config/types.ts b/modules/app-config/types.ts index 12de745796..faa27b020d 100644 --- a/modules/app-config/types.ts +++ b/modules/app-config/types.ts @@ -15,6 +15,5 @@ export interface FeatureFlagType { } export enum AppConfigKey { - ReactNativeDirectory = 'ReactNativeDirectory', MockStoprintData = 'MockStoprintData', }