Skip to content

Commit

Permalink
fixed navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Monique Cheng committed Apr 22, 2024
1 parent 4b5404e commit f8a2b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/storefront/StoreFrontNavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function StoreFrontNavBar(props: {
setInd(newInd);
changeDisplay(1, newInd);
}
setReachedEnd(newInd + 5 < buttonCategories.length);
setReachedEnd(newInd + 5 <= buttonCategories.length);
setReachedStart(true);
};

Expand Down

0 comments on commit f8a2b39

Please sign in to comment.