From 6a631744d9c80ff9a1a9f4b278bc0337ecdb494e Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Sun, 26 Oct 2025 13:51:31 +0400 Subject: chore/frontend: semicolon linting (#287) --- frontend/src/pages/User.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'frontend/src/pages/User.tsx') diff --git a/frontend/src/pages/User.tsx b/frontend/src/pages/User.tsx index 33be1f0..236d5f9 100644 --- a/frontend/src/pages/User.tsx +++ b/frontend/src/pages/User.tsx @@ -83,7 +83,7 @@ const User: React.FC = ({ token, profile, gameData }) => { if (user && game !== "0") { _get_game_maps(); } - }, [user, game, chapter, location]) + }, [user, game, chapter, location]); if (!user) { return ( @@ -248,13 +248,13 @@ const User: React.FC = ({ token, profile, gameData }) => { {e.date.split("T")[0]} - + {i === 0 && r.scores.length > 1 ? : ""} @@ -293,13 +293,13 @@ const User: React.FC = ({ token, profile, gameData }) => { {record!.scores[i].date.split("T")[0]} - + {i === 0 && record!.scores.length > 1 ? : ""} @@ -307,8 +307,8 @@ const User: React.FC = ({ token, profile, gameData }) => { ))} - ) - } else { return null } + ); + } else { return null; } }) : (<>{console.warn(maps)})} -- cgit v1.2.3