fix: delete model error notification

This commit is contained in:
n4ze3m 2024-07-23 21:13:09 +05:30
parent df3484bdeb
commit 9c7ebc8778

View File

@ -143,7 +143,7 @@ export const deleteModel = async (model: string) => {
if (!response.ok) {
throw new Error(response.statusText)
}
return response.json()
return "ok"
}