Fix bug determining whether an app is inside the preview or not
This commit is contained in:
parent
643952e119
commit
a895771179
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue