fix(miniapp): react to initial dashboard load

This commit is contained in:
2026-03-12 00:21:47 +04:00
parent a78eb88fa4
commit fa80474f6e

View File

@@ -1923,7 +1923,7 @@ function App() {
}))
}
const renderPanel = () => {
const panel = createMemo(() => {
switch (activeNav()) {
case 'balances':
return (
@@ -2342,7 +2342,7 @@ function App() {
/>
)
}
}
})
return (
<main class="shell">
@@ -2459,7 +2459,7 @@ function App() {
onChange={setActiveNav}
/>
<section class="content-stack">{renderPanel()}</section>
<section class="content-stack">{panel()}</section>
<Modal
open={profileEditorOpen()}
title={copy().displayNameLabel}