diff --git a/frontend/src/components/forms/ProfileEditForm.tsx b/frontend/src/components/forms/ProfileEditForm.tsx index fbe4f5b07..eecacd73e 100644 --- a/frontend/src/components/forms/ProfileEditForm.tsx +++ b/frontend/src/components/forms/ProfileEditForm.tsx @@ -83,7 +83,8 @@ const ProfileEditForm: FunctionComponent = ({ 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; },