mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-28 18:13:33 +00:00
chore(app): allow clean development benchmarks
This commit is contained in:
parent
eb79d58671
commit
77848d3a55
1 changed files with 2 additions and 2 deletions
|
|
@ -2366,7 +2366,7 @@ export default function Layout(props: ParentProps) {
|
|||
{props.children}
|
||||
</Show>
|
||||
</main>
|
||||
{import.meta.env.DEV && <DebugBar />}
|
||||
{import.meta.env.DEV && import.meta.env.VITE_DISABLE_DEBUG_BAR !== "1" && <DebugBar />}
|
||||
<HelpButton />
|
||||
<ToastRegion v2={newDesign()} />
|
||||
</div>
|
||||
|
|
@ -2519,7 +2519,7 @@ export default function Layout(props: ParentProps) {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{import.meta.env.DEV && <DebugBar />}
|
||||
{import.meta.env.DEV && import.meta.env.VITE_DISABLE_DEBUG_BAR !== "1" && <DebugBar />}
|
||||
</div>
|
||||
<HelpButton />
|
||||
<ToastRegion v2={newDesign()} />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue