From 69aeb7889ac136a8e4fbe7de1330298e30345479 Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:59:12 +0400 Subject: feat/frontend: switch to vite, update node to v22 (#281) --- frontend/src/api/Maps.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/api/Maps.ts') diff --git a/frontend/src/api/Maps.ts b/frontend/src/api/Maps.ts index aa967ce..8d29f84 100644 --- a/frontend/src/api/Maps.ts +++ b/frontend/src/api/Maps.ts @@ -17,9 +17,9 @@ export const get_map_leaderboard = async (map_id: string, page: string): Promise // map the kind of leaderboard data.records = data.records.map((record: any) => { if (record.host && record.partner) { - return { ...record, kind: 'multiplayer' }; + return { ...record, kind: "multiplayer" }; } else { - return { ...record, kind: 'singleplayer' }; + return { ...record, kind: "singleplayer" }; } }); return data; -- cgit v1.2.3