Skip to content

Commit

Permalink
Fix capitalization of BrowseItems component name
Browse files Browse the repository at this point in the history
  • Loading branch information
eerosahlberg committed Apr 21, 2024
1 parent 0b76863 commit 2cb510d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/item/browse.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export async function getServerSideProps(context) {
};
}

export default function browseItems({ items, categories }) {
export default function BrowseItems({ items, categories }) {
items = items.sort((a, b) => {
return a.name.localeCompare(b.name);
});
Expand Down

0 comments on commit 2cb510d

Please sign in to comment.