diff --git a/web/src/App.tsx b/web/src/App.tsx
index 04bb0a5..b52261c 100644
--- a/web/src/App.tsx
+++ b/web/src/App.tsx
@@ -156,44 +156,46 @@ export default function App() {
// balance on this page wrong and look entirely plausible doing it.
decimals={info?.token_decimals ?? 12}
symbol={info?.token_symbol ?? ''}
- onClose={closePanel}
/>
)}
{route.miner && chain && (
-
+
)}
-
-
-
-
The Standings
-
- last {activeWindow.blocks.toLocaleString('en-US')} blocks ·{' '}
- {windowSpan(activeWindow.blocks, interval)}
- {pinned.length > 0 && ` · ${pinned.length} marked yours`}
-
-
-
-
+ {/* A miner and an account are pages, not things opened over the board.
+ Each is somebody's own record and the whole subject of the URL that
+ reached it; leaving eleven other miners' rows underneath is the site
+ failing to notice which page it is on. A block keeps the board,
+ because a block is read *against* it — who won this one, and where do
+ they sit — and the ticker below is the row you clicked to get here. */}
+ {!route.account && !route.miner && (
+
+
+
+
The Standings
+
+ last {activeWindow.blocks.toLocaleString('en-US')} blocks ·{' '}
+ {windowSpan(activeWindow.blocks, interval)}
+ {pinned.length > 0 && ` · ${pinned.length} marked yours`}
+
+
+
+
-
-
-
Live Blocks
-
- {state.summary?.block_interval_seconds
- ? `${seconds(state.summary.block_interval_seconds)} apart`
- : 'measuring'}
-
-
-
-
-
+
+
+
Live Blocks
+
+ {state.summary?.block_interval_seconds
+ ? `${seconds(state.summary.block_interval_seconds)} apart`
+ : 'measuring'}
+
+
+
+
+
+ )}