Remove top creators leaderboard

This commit is contained in:
James Grugett 2022-07-27 10:38:58 -07:00
parent 6be321fb88
commit f61c2c2cc0

View File

@ -71,7 +71,7 @@ export default function Leaderboards(_props: {
}, []) }, [])
const LeaderboardWithPeriod = (period: Period) => { const LeaderboardWithPeriod = (period: Period) => {
const { topTraders, topCreators } = props[period] const { topTraders } = props[period]
return ( return (
<> <>
@ -86,18 +86,6 @@ export default function Leaderboards(_props: {
}, },
]} ]}
/> />
<Leaderboard
title="🏅 Top creators"
users={topCreators}
columns={[
{
header: 'Total bet',
renderCell: (user) =>
formatMoney(user.creatorVolumeCached[period]),
},
]}
/>
</Col> </Col>
</> </>
) )