9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
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;
|
|
}
|
|
} |