fix format

This commit is contained in:
fyears
2022-05-03 22:43:53 +08:00
parent f26e491922
commit 7c2a17c404
+1 -3
View File
@@ -821,9 +821,7 @@ const downloadFromRemoteRaw = async (
return content;
} else {
const content = await // cannot set no-cache here, will have cors error
(
await fetch(downloadUrl)
).arrayBuffer();
(await fetch(downloadUrl)).arrayBuffer();
return content;
}
};