Skip to content

Commit

Permalink
Fix example fetching for next
Browse files Browse the repository at this point in the history
  • Loading branch information
delucis committed Nov 23, 2024
1 parent 8c2ac6a commit 8c9c6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/examples.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function groupExamplesByCategory(examples: ExampleDataWithRepo[], ref: string) {
}

export async function getCategorizedExamples(ref = 'latest') {
const examples = await getExamples();
const examples = await getExamples(ref);
return groupExamplesByCategory(examples, ref);
}

Expand Down

0 comments on commit 8c9c6a2

Please sign in to comment.