chore: simplify syntax
This commit is contained in:
parent
887d19b660
commit
d5aea3fd59
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Reference in a new issue