Skip to content

Commit 05e3a12

Browse files
committed
ugh
1 parent d3133d0 commit 05e3a12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sites/svelte.dev/src/routes/(authed)/repl/[id]/embed/+page.server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export async function load({ fetch, params, url }) {
44
const res = await fetch(`/repl/api/${params.id}.json`);
55

66
if (!res.ok) {
7-
throw error(res.status);
7+
throw error(/** @type {any} */ (res.status));
88
}
99

1010
const gist = await res.json();

0 commit comments

Comments
 (0)