summaryrefslogtreecommitdiff
path: root/makima/frontend/src/routes
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-03 22:35:19 +0000
committersoryu <soryu@soryu.co>2026-02-03 22:35:19 +0000
commitdcbf8c834626870a43b633b099f409d69d4f9b87 (patch)
treeee59043d56ffdc0cd4d4cede41fc9caed1d2fdf4 /makima/frontend/src/routes
parent78087b37d25ba0b0f955c0f8a13d73f3014f707e (diff)
downloadsoryu-dcbf8c834626870a43b633b099f409d69d4f9b87.tar.gz
soryu-dcbf8c834626870a43b633b099f409d69d4f9b87.zip
Fix: FE type error
Diffstat (limited to 'makima/frontend/src/routes')
-rw-r--r--makima/frontend/src/routes/chains.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/makima/frontend/src/routes/chains.tsx b/makima/frontend/src/routes/chains.tsx
index f01d5a6..23484b4 100644
--- a/makima/frontend/src/routes/chains.tsx
+++ b/makima/frontend/src/routes/chains.tsx
@@ -102,7 +102,7 @@ function ChainsPageContent() {
const result = await createNewChain(data);
if (result) {
setIsCreating(false);
- navigate(`/chains/${result.chain.id}`);
+ navigate(`/chains/${result.id}`);
}
} catch (err) {
console.error("Failed to create chain:", err);