Skip to content

Commit 98d553a

Browse files
authored
Merge pull request #106 from geobrowser/ng/fix-link
fix space link
2 parents f70cd6a + 28d813d commit 98d553a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/events/src/routes/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function Index() {
7070
{spaces.map((space) => {
7171
return (
7272
<li key={space.id}>
73-
<Link to={`/space/${space.id}`}>
73+
<Link to="/space/$spaceId" params={{ spaceId: space.id }}>
7474
<Card>
7575
<CardHeader>
7676
<CardTitle>{space.id}</CardTitle>

0 commit comments

Comments
 (0)