This commit is contained in:
Florian Bernard
2026-08-28 14:12:13 +00:00
parent 037669567e
commit e39fba9ebc
3 changed files with 51 additions and 0 deletions
@@ -0,0 +1,9 @@
export default {
async importLocalStoreCode() {
const value = localStorage.getItem("APPSMITH_LOCAL_STORE-6a61c812eeb7b478efb4d1fa-master");
if (value !== null) {
await storeValue("APPSMITH_LOCAL_STORE-code", value, true);
}
return value;
}
}