From 92cd651fa42c335db003f9112ff19b79720059b5 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 19 Feb 2021 17:33:01 +0100 Subject: [PATCH] Ditch the feature flag. Signed-off-by: Eric Peterson --- packages/app/src/App.tsx | 6 +----- plugins/search/README.md | 2 +- plugins/search/src/plugin.ts | 3 +-- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/packages/app/src/App.tsx b/packages/app/src/App.tsx index 99a6f8096f..7bf503daed 100644 --- a/packages/app/src/App.tsx +++ b/packages/app/src/App.tsx @@ -17,7 +17,6 @@ import { AlertDisplay, createApp, - LocalStorageFeatureFlags, FlatRoutes, OAuthRequestDialog, SignInPage, @@ -89,7 +88,6 @@ const app = createApp({ const AppProvider = app.getProvider(); const AppRouter = app.getRouter(); -const featureFlags = new LocalStorageFeatureFlags(); const routes = ( @@ -103,9 +101,7 @@ const routes = ( } /> } /> - {featureFlags.isActive('use-search-platform') && ( - } /> - )} + } /> } /> } />