fix(XPack): 修复认证缓存内容

This commit is contained in:
fit2-zhao 2020-09-23 09:37:56 +08:00
parent 1dfbd16144
commit f3e3e70658
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ export function saveLocalStorage(response) {
export function saveLicense(data) {
// 保存License
localStorage.setItem(LicenseKey, JSON.stringify(data));
localStorage.setItem(LicenseKey, data);
}