0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Commented out "Recommending you" stats while we're in QA

no refs
This commit is contained in:
Djordje Vlaisavljevic 2023-09-20 14:30:51 +01:00
parent 8f5ac0620b
commit 9dea3d344a

View file

@ -34,15 +34,15 @@ const IncomingRecommendationItem: React.FC<{mention: Mention}> = ({mention}) =>
</div> </div>
</div> </div>
</TableCell> </TableCell>
<TableCell className='hidden md:!visible md:!table-cell' onClick={showDetails}> {/* <TableCell className='hidden md:!visible md:!table-cell' onClick={showDetails}>
<div className={`flex grow flex-col`}> <div className={`flex grow flex-col`}>
{/* If it's 0 */} If it's 0
{/* <span className="text-grey-500">-</span> */} <span className="text-grey-500">-</span>
{/* If it's more than 0 */} If it's more than 0
<span>12</span> <span>12</span>
<span className='whitespace-nowrap text-xs text-grey-700'>Subscribers gained</span> <span className='whitespace-nowrap text-xs text-grey-700'>Subscribers gained</span>
</div> </div>
</TableCell> </TableCell> */}
</TableRow> </TableRow>
); );
}; };