Skip to content

Commit

Permalink
Add note into explain
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Oct 27, 2024
1 parent b05406b commit 2ee345d
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions screens/players/tabs/standings-tab/player-standings-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ const PlayerStandingsTable = ({
footer: (
<>
<Text size={"xs"} c="dimmed">
<HelperIcon text={"Best Rank Achieved. The best Rank the player ever had."} />
<HelperIcon
text={
"Best Rank Achieved. The best Rank the player ever had. Lower is better."
}
/>
</Text>
</>
),
Expand All @@ -109,7 +113,7 @@ const PlayerStandingsTable = ({
<span>{rating}</span>
{highestrating > 0 && (
<Text size={"xs"} c="dimmed">
Best {highestrating}
Best {highestrating > rating ? highestrating : rating}
</Text>
)}
</Stack>
Expand All @@ -118,7 +122,11 @@ const PlayerStandingsTable = ({
footer: (
<>
<Text size={"xs"} c="dimmed">
<HelperIcon text={"Best ELO Achieved. The best ELO the player ever had."} />
<HelperIcon
text={
"Best ELO Achieved. The best ELO the player ever had. Higher is better."
}
/>
</Text>
</>
),
Expand Down

0 comments on commit 2ee345d

Please sign in to comment.