From 2d6dea4bf6187fa4e2b70a9434ad97c993abdf95 Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Sat, 13 Jun 2026 11:14:22 +0200 Subject: [PATCH] fix(settings): rename remark model 'Other' to 'External Proxy' (#5265) The 'o' remark block is sourced from an external proxy's remark, but the label 'Other' gave no hint where to set it. Rename the display label to 'External Proxy' to match the inbound form section; the stored 'o' key is unchanged so existing remarkModel values stay compatible. --- frontend/src/pages/settings/SubscriptionGeneralTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/settings/SubscriptionGeneralTab.tsx b/frontend/src/pages/settings/SubscriptionGeneralTab.tsx index 8ba2a048f..06c6d1546 100644 --- a/frontend/src/pages/settings/SubscriptionGeneralTab.tsx +++ b/frontend/src/pages/settings/SubscriptionGeneralTab.tsx @@ -8,7 +8,7 @@ import { useMediaQuery } from '@/hooks/useMediaQuery'; import { catTabLabel } from './catTabLabel'; import { sanitizePath, normalizePath } from './uriPath'; -const REMARK_MODELS: Record = { i: 'Inbound', e: 'Email', o: 'Other' }; +const REMARK_MODELS: Record = { i: 'Inbound', e: 'Email', o: 'External Proxy' }; const REMARK_SAMPLES: Record = { i: 'Germany', e: 'john', o: 'Relay' }; const REMARK_SEPARATORS = [' ', '-', '_', '@', ':', '~', '|', ',', '.', '/'];