This commit is contained in:
Alexandru Branza 2023-05-31 10:23:11 +03:00
parent aaacc98316
commit eb4ad0a759

View file

@ -158,7 +158,7 @@ const useProfileSettingsInputs = (profile) => {
}
}), [profile.settings]);
const playInExternalPlayerSelect = React.useMemo(() => ({
options: externalPlayerOptions.map(opt => {
options: externalPlayerOptions.map((opt) => {
opt.label = t(opt.label);
return opt;
}),