Skip to content

Commit

Permalink
πŸ› Fix latest book sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt committed Dec 6, 2024
1 parent 7897e27 commit 9feb248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/store/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ export default {
return this.nftGetBookstoreCMSProductsByTagId(this.selectedTagId);
}
if (this.selectedSorting === SORTING_OPTIONS.LATEST) {
if (this.selectedTagId === 'latest') {
// Return the latest 100 published books & fill up with recommended books from CMS
return this.nftBookstoreLatestItems
.map(item => ({
Expand Down

0 comments on commit 9feb248

Please sign in to comment.