refac: error message

This commit is contained in:
Timothy J. Baek 2024-03-05 01:07:59 -08:00
parent f04d60b6d9
commit 8fd7bc342d
3 changed files with 12 additions and 7 deletions

View file

@ -20,7 +20,10 @@
const deleteModelHandler = async (tagName) => {
let success = null;
success = await deleteModel(localStorage.token, tagName);
success = await deleteModel(localStorage.token, tagName).catch((err) => {
toast.error(err);
return null;
});
if (success) {
toast.success(`Deleted ${tagName}`);