diff --git a/src/redux/reducers/experiments.ts b/src/redux/reducers/experiments.ts index 39ee5c1a..c9da28d3 100644 --- a/src/redux/reducers/experiments.ts +++ b/src/redux/reducers/experiments.ts @@ -1,5 +1,5 @@ export type Experiments = "search"; -export const AVAILABLE_EXPERIMENTS: Experiments[] = ["search"]; +export const AVAILABLE_EXPERIMENTS: Experiments[] = []; export const EXPERIMENTS: { [key in Experiments]: { title: string; description: string }; } = {