has to be a new version

This commit is contained in:
2025-08-17 22:43:01 -04:00
parent f5de37523a
commit 601e3660d3
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "@games/client",
"type": "module",
"version": "0.0.2",
"version": "0.0.3",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build"

View File

@@ -10,7 +10,7 @@ export default () => {
return (
<div style={{ padding: "20px" }}>
<For each={games()}>
{(game) => <A href={`/${game.name}`}>{game.name}</A>}
{(game) => <A href={`/${game.key}`}>{game.name}</A>}
</For>
</div>
);