Browse Source

Fix using wrong local storage key when persisting state in client apps

pull/4023/head
Andrew Kingston 5 years ago
parent
commit
1c23dc3a3c
  1. 4
      packages/client/src/stores/state.js

4
packages/client/src/stores/state.js

@ -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…
Cancel
Save