summaryrefslogtreecommitdiff
path: root/makima/frontend/src/components
diff options
context:
space:
mode:
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}