fix missing embellishment in rewards leaderboard

This commit is contained in:
keyan 2024-05-06 11:41:02 -05:00
parent 111053006a
commit ce9e146a06
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ export function User ({ user, rank, statComps, className = 'mb-2', Embellish, ny
<div className={styles.other}>
{statComps.map((Comp, i) => <Comp key={i} user={user} />)}
</div>}
{Embellish && <Embellish rank={rank} />}
</UserBase>
</>
)