← back to Ken
auto-save: 2026-08-03T09:22:36 (1 files) — kalshi-dash/src/Layout.jsx
fc471b8e6cf6fd6f1d65e619eb551a46d845f468 · 2026-08-03 09:22:48 -0700 · Steve Abrams
Files touched
M kalshi-dash/src/Layout.jsx
Diff
commit fc471b8e6cf6fd6f1d65e619eb551a46d845f468
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Mon Aug 3 09:22:48 2026 -0700
auto-save: 2026-08-03T09:22:36 (1 files) — kalshi-dash/src/Layout.jsx
---
kalshi-dash/src/Layout.jsx | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/kalshi-dash/src/Layout.jsx b/kalshi-dash/src/Layout.jsx
index a9250dd..19a9698 100644
--- a/kalshi-dash/src/Layout.jsx
+++ b/kalshi-dash/src/Layout.jsx
@@ -358,7 +358,7 @@ export default function Layout() {
<span style={{ color: 'var(--cyan)', fontWeight: 700, letterSpacing: '0.06em' }}>KEN TRADER</span>
<span style={{ color: 'var(--border-light)' }}>|</span>
<span>
- KALSHI{' '}
+ KALSHI DATA{' '}
<span style={{ color: h?.kalshi_connected ? 'var(--green)' : 'var(--red)', fontWeight: 700 }}>
{h?.kalshi_connected ? 'LIVE' : 'OFFLINE'}
</span>
@@ -377,11 +377,15 @@ export default function Layout() {
{(h?.env || 'DEMO').toUpperCase()}
</span>
</span>
- {h?.safe_mode && (
- <>
- <span style={{ color: 'var(--border-light)' }}>|</span>
- <span style={{ color: 'var(--orange)', fontWeight: 700 }}>SAFE MODE ON</span>
- </>
+ <span style={{ color: 'var(--border-light)' }}>|</span>
+ {h?.safe_mode !== false ? (
+ <span style={{ color: 'var(--green)', fontWeight: 800, background: 'rgba(34,197,94,0.14)', padding: '1px 8px', borderRadius: 6, letterSpacing: '0.04em' }}>
+ 📝 PAPER · NO REAL MONEY
+ </span>
+ ) : (
+ <span style={{ color: 'var(--red)', fontWeight: 800, background: 'rgba(239,68,68,0.18)', padding: '1px 8px', borderRadius: 6, letterSpacing: '0.04em' }}>
+ 🔴 LIVE MONEY
+ </span>
)}
<span style={{ color: 'var(--border-light)' }}>|</span>
<LiveRunChip lr={lr} />
← e7e3c8c Ken: fix resolver 270x portfolio over-credit — settle idempo
·
back to Ken
·
Ken UI: unmistakable PAPER/LIVE-MONEY badge + 'Paper Balance 9de5a64 →