Merge pull request #3369 from jaisinha77777/fix/private-resources-delete-error-toast

Fix broken toast on private resource delete failure
This commit is contained in:
Owen Schwartz
2026-07-01 08:43:50 -04:00
committed by GitHub

View File

@@ -186,11 +186,11 @@ export default function PrivateResourcesTable({
});
});
} catch (e) {
console.error(t("resourceErrorDelete"), e);
console.error(t("resourceErrorDelte"), e);
toast({
variant: "destructive",
title: t("resourceErrorDelte"),
description: formatAxiosError(e, t("v"))
description: formatAxiosError(e, t("resourceErrorDelte"))
});
}
};