diff --git a/frontend/src/pages/Configs.tsx b/frontend/src/pages/Configs.tsx index 8467329..eba2ff4 100644 --- a/frontend/src/pages/Configs.tsx +++ b/frontend/src/pages/Configs.tsx @@ -273,10 +273,7 @@ const Configs: FC = observer(() => { { - if (commonStore.platform === 'darwin') { - toast(t('MacOS is not yet supported for performing this operation, please do it manually.') + ' (backend-python/convert_safetensors.py)', { type: 'info' }); - return; - } else if (commonStore.platform === 'linux') { + if (commonStore.platform === 'linux') { toast(t('Linux is not yet supported for performing this operation, please do it manually.') + ' (backend-python/convert_safetensors.py)', { type: 'info' }); return; }