Skip to content

Commit

Permalink
fix: Resolved a relative path error
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-coster committed Jul 9, 2023
1 parent efe568d commit b71a850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/site/src/routes/gamemaker/releases/+page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { PageLoad } from './$types';

export const load = (async () => {
const releases: GameMakerReleaseWithNotes[] = await (
await fetch('../../artifacts/gamemaker/releases-summary.json')
await fetch('../artifacts/gamemaker/releases-summary.json')
).json();
return {
releases
Expand Down

0 comments on commit b71a850

Please sign in to comment.