This commit is contained in:
Anderson Oki 2024-04-25 11:04:45 +09:00
parent e473d3554e
commit 4e1ccffa07
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ const ProfileEditForm: FunctionComponent<Props> = ({
const itemCutoffOptions = useSelectorOptions(
form.values.items,
(v) => {
const suffix = v.hi === "True" ? ':hi' : v.forced === "True" ? ':forced': '';
const suffix =
v.hi === "True" ? ":hi" : v.forced === "True" ? ":forced" : "";
return v.language + suffix;
},