A decentralized music tracking and discovery platform built on AT Protocol 🎵

Hide zero scrobbles in PopularTracks table

+1 -1
+1 -1
apps/web/src/pages/song/PopularTracks/PopularTracks.tsx
··· 160 160 )} 161 161 </TableBuilderColumn> 162 162 <TableBuilderColumn header="Scrobbles"> 163 - {(row: Row) => <div>{row.scrobbles}</div>} 163 + {(row: Row) => <div>{row.scrobbles > 0 ? row.scrobbles : ""}</div>} 164 164 </TableBuilderColumn> 165 165 </TableBuilder> 166 166 </div>