fix: remove theme shop from settings

This commit is contained in:
Paul Makles
2022-01-10 20:37:20 +00:00
parent 2ada3e963e
commit 69f1d39aec
2 changed files with 3 additions and 14 deletions

View File

@@ -12,12 +12,12 @@ import Store from "../interfaces/Store";
/**
* Union type of available experiments.
*/
export type Experiment = "dummy" | "theme_shop";
export type Experiment = "dummy";
/**
* Currently active experiments.
*/
export const AVAILABLE_EXPERIMENTS: Experiment[] = ["dummy", "theme_shop"];
export const AVAILABLE_EXPERIMENTS: Experiment[] = ["dummy"];
/**
* Definitions for experiments listed by {@link Experiment}.
@@ -29,10 +29,6 @@ export const EXPERIMENTS: {
title: "Dummy Experiment",
description: "This is a dummy experiment.",
},
theme_shop: {
title: "Theme Shop",
description: "Allows you to access and set user submitted themes.",
},
};
export interface Data {