0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00

chore: lint

This commit is contained in:
bholmesdev 2024-02-01 18:07:18 -05:00
parent 338a1afb5c
commit feed9ea0bd

View file

@ -206,7 +206,7 @@ async function prepareMigrateQuery({
body: JSON.stringify(requestBody),
});
if (result.status >= 400) {
throw new Error(await result.text())
throw new Error(await result.text());
}
return await result.json();
}