diff --git a/src/shared/constants/feedback.constants.ts b/src/shared/constants/feedback.constants.ts index af6f6e75ef..45f69efa15 100644 --- a/src/shared/constants/feedback.constants.ts +++ b/src/shared/constants/feedback.constants.ts @@ -1,5 +1,11 @@ // Plain strings, not a Prisma enum: adding an area costs a constant here and no // migration, and its Flipt flag is derived from the slug. +// +// 🔴 `bitdex-image-feed` has no producer — BitDex was decommissioned 2026-09-01 and +// its prompt went with it. KEEP IT ANYWAY. This enum is what `getFeedbackAreaSchema` +// validates a moderator's query against, so deleting the slug makes every historical +// feedback row filed under it unreadable through that route. It cannot grow: nothing +// writes it any more. export const FEEDBACK_AREAS = ['bitdex-image-feed', 'apps-marketplace'] as const; export type FeedbackArea = (typeof FEEDBACK_AREAS)[number];