chore: simplify syntax

This commit is contained in:
Cory Dransfeldt 2024-02-05 13:21:21 -08:00
parent 887d19b660
commit d5aea3fd59
No known key found for this signature in database

View file

@ -21,8 +21,7 @@ export const img = async (
const isLocal = src.includes('src/assets');
const imageExists = async () => {
try {
const isOk = await fetch(src, { method: 'HEAD' }).then((res) => res.ok);
return isOk;
return await fetch(src, { method: 'HEAD' }).then((res) => res.ok);
} catch {
return false;
}