Web: Removed quota overwrite when loading a license.

This commit is contained in:
Tatiana Lopaeva 2023-05-22 17:09:16 +03:00
parent f05dc74e21
commit 492ada2d88

View File

@ -50,6 +50,8 @@ class AuthStore {
const { socketHelper } = this.settingsStore;
socketHelper.on("s:change-quota-used-value", ({ featureId, value }) => {
if (this.settingsStore.standalone) return;
console.log(`[WS] change-quota-used-value ${featureId}:${value}`);
runInAction(() => {
@ -58,6 +60,8 @@ class AuthStore {
});
socketHelper.on("s:change-quota-feature-value", ({ featureId, value }) => {
if (this.settingsStore.standalone) return;
console.log(`[WS] change-quota-feature-value ${featureId}:${value}`);
runInAction(() => {