Skip to content

Commit

Permalink
Fix polyfill issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jmduke committed Sep 9, 2024
1 parent c9fb412 commit 8e6d7ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default async function Home() {
<br />
<Grid.Container>
{Object.values(REGISTRY)
.toSorted((a, b) => a.identifier.localeCompare(b.identifier))
.sort((a, b) => a.identifier.localeCompare(b.identifier))
.map((service) => (
<Grid.Item
key={service.identifier}
Expand Down

0 comments on commit 8e6d7ef

Please sign in to comment.