From 1830809620cecc4fd8b2c1324e8d9e47f3fb6d8a Mon Sep 17 00:00:00 2001 From: sk1982 Date: Mon, 1 Apr 2024 07:32:53 -0400 Subject: [PATCH] fix: ldquo/rdquo in config --- src/app/(with-header)/admin/system-config/system-config.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(with-header)/admin/system-config/system-config.tsx b/src/app/(with-header)/admin/system-config/system-config.tsx index 21c84bf..79039dc 100644 --- a/src/app/(with-header)/admin/system-config/system-config.tsx +++ b/src/app/(with-header)/admin/system-config/system-config.tsx @@ -61,7 +61,7 @@ export const SystemConfig = ({ config: initialConfig }: SystemConfigProps) => { onValueChange={v => setConfigKey('user_max_card', (!v || +v < 1) ? null : +v)} /> - If "Allow users to add cards" is enabled, this controls the max card count per user. Note that user moderators can exceed this count. + If “Allow users to add cards” is enabled, this controls the max card count per user. Note that user moderators can exceed this count. @@ -76,7 +76,7 @@ export const SystemConfig = ({ config: initialConfig }: SystemConfigProps) => { .map(p => p.toString()))} onSelectionChange={s => typeof s !== 'string' && setConfigKey('chuni_allow_equip_unearned', ([...s] as number[]).reduce((t, x) => +t | (1 << +x), 0))}> - {[[UserPermissions.USER, { title: 'User' }] as const, ...USER_PERMISSION_NAMES] + {[[UserPermissions.USER, { title: 'All Users' }] as const, ...USER_PERMISSION_NAMES] .map(([permission, { title }]) => ( {title} )) }