diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-21 09:03:18 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-21 09:03:18 +0900 |
| commit | d379ce3309e5241359b9849fd0170909a140169c (patch) | |
| tree | e0629db6607d09f1d268f0ec3492e09fd7758fd8 /frontend/app/routes/dashboard.tsx | |
| parent | a51f7aefb2f6a247a57f01d3ca5acc300451bba2 (diff) | |
| download | phperkaigi-2025-albatross-d379ce3309e5241359b9849fd0170909a140169c.tar.gz phperkaigi-2025-albatross-d379ce3309e5241359b9849fd0170909a140169c.tar.zst phperkaigi-2025-albatross-d379ce3309e5241359b9849fd0170909a140169c.zip | |
feat(frontend): remove game type labels in dashboard
Diffstat (limited to 'frontend/app/routes/dashboard.tsx')
| -rw-r--r-- | frontend/app/routes/dashboard.tsx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/frontend/app/routes/dashboard.tsx b/frontend/app/routes/dashboard.tsx index 3f68529..23ef2e4 100644 --- a/frontend/app/routes/dashboard.tsx +++ b/frontend/app/routes/dashboard.tsx @@ -58,17 +58,12 @@ export default function Dashboard() { {games.map((game) => ( <li key={game.game_id} - className="flex justify-between items-center py-3 gap-3" + className="flex justify-between items-center py-2 gap-4" > <div> <span className="font-medium text-gray-800"> {game.display_name} </span> - <span className="text-sm text-gray-500 ml-2"> - {game.game_type === "multiplayer" - ? " (マルチ)" - : " (1v1)"} - </span> </div> <div className="flex gap-2"> <NavigateLink to={`/golf/${game.game_id}/play`}> |
