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}
)) }