From 981fc67138e7ee6d72d65518d3fbc454b6a1b5f7 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 17 Jan 2024 18:13:27 -0800 Subject: [PATCH] Remove ununsed constants --- src/state/queries/preferences/moderation.ts | 28 --------------------- 1 file changed, 28 deletions(-) diff --git a/src/state/queries/preferences/moderation.ts b/src/state/queries/preferences/moderation.ts index cdae529374..58a5112c91 100644 --- a/src/state/queries/preferences/moderation.ts +++ b/src/state/queries/preferences/moderation.ts @@ -52,34 +52,6 @@ export const DEFAULT_LOGGED_OUT_LABEL_PREFERENCES: Record< impersonation: 'hide', } -export const ILLEGAL_LABEL_GROUP: LabelGroupConfig = { - id: 'illegal', - title: 'Illegal Content', - warning: 'Illegal Content', - values: ['csam', 'dmca-violation', 'nudity-nonconsensual'], -} - -export const ALWAYS_FILTER_LABEL_GROUP: LabelGroupConfig = { - id: 'always-filter', - title: 'Content Warning', - warning: 'Content Warning', - values: ['!filter'], -} - -export const ALWAYS_WARN_LABEL_GROUP: LabelGroupConfig = { - id: 'always-warn', - title: 'Content Warning', - warning: 'Content Warning', - values: ['!warn', 'account-security'], -} - -export const UNKNOWN_LABEL_GROUP: LabelGroupConfig = { - id: 'unknown', - title: 'Unknown Label', - warning: 'Content Warning', - values: [], -} - export const CONFIGURABLE_LABEL_GROUPS: Record< ConfigurableLabelGroup, LabelGroupConfig