diff --git a/src/helpers/localStorageHelper.ts b/src/helpers/localStorageHelper.ts index b066853..d5aa0e4 100644 --- a/src/helpers/localStorageHelper.ts +++ b/src/helpers/localStorageHelper.ts @@ -1,6 +1,9 @@ import { showSnackbar } from "./snackbarHelper"; -const LOCAL_STORAGE_APP_CONTEXT = "ffc_"; +// const LOCAL_STORAGE_APP_CONTEXT = "ffc_"; + +const url = new URL(window.location.href); +const LOCAL_STORAGE_APP_CONTEXT = url.pathname + "_"; export interface SyncItem { key: string;