We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b81096 commit 0a749d5Copy full SHA for 0a749d5
sites/skeleton.dev/src/routes/+page.ts
@@ -9,7 +9,7 @@ export const load: PageLoad = async ({ fetch }) => {
9
const body = (await res.json()) as Contributor[];
10
return body.filter((c) => c.login !== 'github-actions[bot]');
11
};
12
- return { contributors: getContributors() };
+ return { contributors: await getContributors() };
13
14
15
export type Contributor = {
0 commit comments