export default { async importLocalStoreCode() { const raw = localStorage.getItem("APPSMITH_LOCAL_STORE-6a61c812eeb7b478efb4d1fa-master"); if (!raw) return null; const parsed = JSON.parse(raw); await storeValue("Userinfo", parsed, true); return parsed; } }