aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Profile.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/Profile.tsx')
-rw-r--r--frontend/src/pages/Profile.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/pages/Profile.tsx b/frontend/src/pages/Profile.tsx
index 3f26bf8..cb89a5e 100644
--- a/frontend/src/pages/Profile.tsx
+++ b/frontend/src/pages/Profile.tsx
@@ -267,7 +267,7 @@ const Profile: React.FC<ProfileProps> = ({ profile, token, gameData, onDeleteRec
267 267
268 <span style={{ display: "grid" }}>{e.score_count}</span> 268 <span style={{ display: "grid" }}>{e.score_count}</span>
269 269
270 <span style={{ display: "grid" }}>{e.score_count - r.map_wr_count}</span> 270 <span style={{ display: "grid" }}>{e.score_count - r.map_wr_count > 0 ? `+${e.score_count - r.map_wr_count}` : e.score_count - r.map_wr_count}</span>
271 <span style={{ display: "grid" }}>{ticks_to_time(e.score_time)}</span> 271 <span style={{ display: "grid" }}>{ticks_to_time(e.score_time)}</span>
272 <span> </span> 272 <span> </span>
273 {i === 0 ? <span>#{r.placement}</span> : <span> </span>} 273 {i === 0 ? <span>#{r.placement}</span> : <span> </span>}