Remove placeholder state panel button

This commit is contained in:
Andrew Kingston 2025-01-23 15:28:34 +00:00
parent f4a10d4f63
commit 2c1c5d7ce9
No known key found for this signature in database
1 changed files with 2 additions and 4 deletions

View File

@ -3,7 +3,6 @@
import AppPreview from "./AppPreview.svelte"
import { screenStore, appStore } from "@/stores/builder"
import UndoRedoControl from "@/components/common/UndoRedoControl.svelte"
import StatePanel from "./StatePanel.svelte"
</script>
<div class="app-panel">
@ -11,13 +10,12 @@
<div class="header">
<div class="header-left">
<UndoRedoControl store={screenStore.history} />
</div>
<div class="header-right">
{#if $appStore.clientFeatures.devicePreview}
<DevicePreviewSelect />
{/if}
</div>
<div class="header-right">
<StatePanel />
</div>
</div>
<div class="content">
{#key $appStore.version}