Skip to content

Commit 0a749d5

Browse files
committed
Contributor fetch fix
1 parent 7b81096 commit 0a749d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sites/skeleton.dev/src/routes/+page.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const load: PageLoad = async ({ fetch }) => {
99
const body = (await res.json()) as Contributor[];
1010
return body.filter((c) => c.login !== 'github-actions[bot]');
1111
};
12-
return { contributors: getContributors() };
12+
return { contributors: await getContributors() };
1313
};
1414

1515
export type Contributor = {

0 commit comments

Comments
 (0)