Add cell count to mod cell list header

This commit is contained in:
Tyler Hallada 2022-02-06 22:15:34 -05:00
parent dabc4ec633
commit f5cb888a72

View File

@ -14,7 +14,7 @@ const ModCellList: React.FC<Props> = ({ cells }) => {
return ( return (
cells && ( cells && (
<> <>
<h2>Cells</h2> <h2>Cells ({cells.length})</h2>
<ul className={styles["cell-list"]}> <ul className={styles["cell-list"]}>
{cells {cells
// .sort((a, b) => b.unique_downloads - a.unique_downloads) // .sort((a, b) => b.unique_downloads - a.unique_downloads)