chore(backend): fix typo in MkImgWithBlurhash.vue (#11125)

occured -> occurred
This commit is contained in:
Ikko Eltociear Ashimine 2023-07-06 09:19:10 +09:00 committed by GitHub
parent dc8763215a
commit 6b2c92cb68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ function waitForDecode() {
.then(() => {
loaded = true;
}, error => {
console.error('Error occured during decoding image', img.value, error);
console.error('Error occurred during decoding image', img.value, error);
throw Error(error);
});
} else {
@ -180,7 +180,7 @@ async function draw() {
render(props.hash, work);
drawImage(work);
} catch (error) {
console.error('Error occured during drawing blurhash', error);
console.error('Error occurred during drawing blurhash', error);
}
}
}