Fix using wrong local storage key when persisting state in client apps
This commit is contained in:
parent
ed29ccf7eb
commit
7346199a3c
|
@ -1,9 +1,9 @@
|
|||
import { writable, get, derived } from "svelte/store"
|
||||
import { localStorageStore } from "builder/src/builderStore/store/localStorage"
|
||||
import { appStore } from "./app"
|
||||
|
||||
const createStateStore = () => {
|
||||
const localStorageKey = `${get(appStore).appId}.state`
|
||||
const appId = window["##BUDIBASE_APP_ID##"] || "app"
|
||||
const localStorageKey = `${appId}.state`
|
||||
const persistentStore = localStorageStore(localStorageKey, {})
|
||||
|
||||
// Initialise the temp store to mirror the persistent store
|
||||
|
|
Loading…
Reference in New Issue