[Glitch] Remove the outgoing_quotes feature flag, making the feature unconditional

Port e1f7847b64 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Claire
2025-09-24 10:58:08 +02:00
parent ee64228963
commit 500619ba4c
8 changed files with 12 additions and 107 deletions

View File

@@ -12,11 +12,7 @@ export function isProduction() {
else return import.meta.env.PROD;
}
export type Features =
| 'modern_emojis'
| 'outgoing_quotes'
| 'fasp'
| 'http_message_signatures';
export type Features = 'modern_emojis' | 'fasp' | 'http_message_signatures';
export function isFeatureEnabled(feature: Features) {
return initialState?.features.includes(feature) ?? false;