Fix image uploader

This commit is contained in:
2026-03-18 21:10:56 +00:00
parent f1acfcd073
commit 11a752a6b2

View File

@@ -124,6 +124,10 @@ const uploadImage = async () => {
method: 'POST',
body: formData
});
if (response) {
response.imageUrl = null;
}
recipe.value = response;
} catch (error) {
console.error("Error:", error);