1
0
Fork 0
mirror of synced 2024-07-05 14:31:17 +12:00

Fix bug determining whether an app is inside the preview or not

This commit is contained in:
Andrew Kingston 2021-08-19 16:06:33 +01:00
parent 29aabb8a59
commit 8a8e13119e

View file

@ -62,7 +62,7 @@ const createBuilderStore = () => {
const writableStore = writable(initialState) const writableStore = writable(initialState)
const derivedStore = derived(writableStore, $state => { const derivedStore = derived(writableStore, $state => {
// Avoid any of this logic if we aren't in the builder preview // Avoid any of this logic if we aren't in the builder preview
if (!writableStore.inBuilder) { if (!$state.inBuilder) {
return $state return $state
} }