summaryrefslogtreecommitdiff
path: root/makima/frontend/src/components
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/components
parent78087b37d25ba0b0f955c0f8a13d73f3014f707e (diff)
downloadsoryu-dcbf8c834626870a43b633b099f409d69d4f9b87.tar.gz
soryu-dcbf8c834626870a43b633b099f409d69d4f9b87.zip
Fix: FE type error
Diffstat (limited to 'makima/frontend/src/components')
-rw-r--r--makima/frontend/src/components/chains/ChainEditor.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/makima/frontend/src/components/chains/ChainEditor.tsx b/makima/frontend/src/components/chains/ChainEditor.tsx
index 92bd496..0dcabe1 100644
--- a/makima/frontend/src/components/chains/ChainEditor.tsx
+++ b/makima/frontend/src/components/chains/ChainEditor.tsx
@@ -114,19 +114,19 @@ export function ChainEditor({
Back
</button>
<div>
- <h2 className="font-mono text-sm text-[#dbe7ff]">{chain.chain.name}</h2>
- {chain.chain.description && (
- <p className="font-mono text-xs text-[#8b949e]">{chain.chain.description}</p>
+ <h2 className="font-mono text-sm text-[#dbe7ff]">{chain.name}</h2>
+ {chain.description && (
+ <p className="font-mono text-xs text-[#8b949e]">{chain.description}</p>
)}
</div>
</div>
<div className="flex items-center gap-2">
<span
className={`font-mono text-[10px] uppercase ${
- statusColors[chain.chain.status] || "text-[#555]"
+ statusColors[chain.status] || "text-[#555]"
}`}
>
- {chain.chain.status}
+ {chain.status}
</span>
<button
onClick={onRefresh}