chore: strip emoji picker experiment

chore: use discrim
This commit is contained in:
Paul Makles
2023-06-11 18:36:07 +01:00
parent 961ee92a1c
commit 6d5dd9b13e
9 changed files with 58 additions and 33 deletions

View File

@@ -77,10 +77,6 @@ export default class Changelog implements Store, Persistent<Data>, Syncable {
runInAction(() => {
this.viewed = latestChangelog;
});
} else {
modalController.push({
type: "changelog_usernames",
});
}
}
}

View File

@@ -10,7 +10,7 @@ import Store from "../interfaces/Store";
/**
* Union type of available experiments.
*/
export type Experiment = "dummy" | "offline_users" | "plugins" | "picker";
export type Experiment = "dummy" | "offline_users" | "plugins";
/**
* Currently active experiments.
@@ -19,7 +19,6 @@ export const AVAILABLE_EXPERIMENTS: Experiment[] = [
"dummy",
"offline_users",
"plugins",
"picker",
];
/**
@@ -42,11 +41,6 @@ export const EXPERIMENTS: {
description:
"This will enable the experimental plugin API. Only touch this if you know what you're doing.",
},
picker: {
title: "Custom Emoji",
description:
"This will enable a work-in-progress emoji picker, custom emoji settings and a reaction picker.",
},
};
export interface Data {