Skip to content

Commit

Permalink
feat: Some clash_mode keywords are translated using i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
xireiki committed Aug 20, 2024
1 parent 359cebf commit d68a4ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ const ConfigForm = () => {
}
>
{modes().map(name => (
<option value={name}>{t(name)}</option>
<option value={name}>{t(name) ?? name}</option>
))}
</select>

Expand Down

0 comments on commit d68a4ce

Please sign in to comment.