Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit b3c10d3

Browse files
committed
allowing anything non-null
1 parent f43c587 commit b3c10d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/FinalistTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const table = (props) => {
7575

7676
<div className='points'>
7777
{ profile.scoreLevel && <img className={`animate fade${profile.scoreLevel} infinite`} src={`/static/img/trend/${profile.scoreLevel}.png`} /> }
78-
{ profile.points > 0 && <div className={profile.scoreLevel ? '' : 'non-score-lvl-pt'}>
78+
{ profile.points != null && <div className={profile.scoreLevel ? '' : 'non-score-lvl-pt'}>
7979
<span className='value'>
8080
{profile.points}
8181
</span>

0 commit comments

Comments
 (0)