chore: fix lint(missing semicolon)

This commit is contained in:
Sayamame-beans 2026-05-30 18:43:40 +09:00 committed by GitHub
commit 0a184e8e62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -205,7 +205,7 @@ async function init() {
}
}
const fileData = urlParams.get('file')
const fileData = urlParams.get('file');
if (fileData && fileData.startsWith('data:')) {
try {
const file = await window.fetch(fileData).then(res => res.blob());