fix: forgot to remove test in getPlayer

This commit is contained in:
Pihkaal
2025-11-08 13:15:45 +01:00
parent ba49209857
commit 2e08c8a303

View File

@@ -129,8 +129,6 @@ export async function getPlayer(playerId: string) {
if (response.status === 404) return null;
return { username: "test" };
const data = (await response.json()) as {
username: string;
};