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", "name": "@games/client",
"type": "module", "type": "module",
"version": "0.0.2", "version": "0.0.3",
"scripts": { "scripts": {
"dev": "vite --port 3000", "dev": "vite --port 3000",
"build": "vite build" "build": "vite build"

View File

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