Browse Source

fix: disable rate limit notification

pull/142/head
Matthew Raymer 19 hours ago
parent
commit
591a740a1f
  1. 6
      src/views/AccountViewView.vue

6
src/views/AccountViewView.vue

@ -1423,9 +1423,9 @@ export default class AccountViewView extends Vue {
return;
}
} catch (error) {
this.limitsMessage =
ACCOUNT_VIEW_CONSTANTS.LIMITS.ERROR_RETRIEVING_LIMITS;
this.notify.error(this.limitsMessage, TIMEOUTS.STANDARD);
this.limitsMessage = ACCOUNT_VIEW_CONSTANTS.LIMITS.ERROR_RETRIEVING_LIMITS;
console.log("error: ", error);
// this.notify.error(this.limitsMessage, TIMEOUTS.STANDARD);
} finally {
this.loadingLimits = false;
}

Loading…
Cancel
Save