Skip to content
This repository has been archived by the owner on Dec 23, 2019. It is now read-only.

Commit

Permalink
fix(pack): remove unnecessary toast error message of pack informations
Browse files Browse the repository at this point in the history
  • Loading branch information
Jérémy DE CESARE committed Feb 1, 2019
1 parent 0e5b499 commit 365a928
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions client/app/telecom/pack/pack.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,8 @@ angular.module('managerApp').controller('PackCtrl', class PackCtrl {
this.resiliationNotification.cancelSuccess = false; // display only once
return packInfo;
})
.catch((err) => {
.catch(() => {
this.inError = true;
this.TucToast.error(this.$translate.instant('pack_xdsl_oops_an_error_is_occured'));
return this.$q.reject(err);
})
.finally(() => {
this.loader.page = false;
Expand Down

0 comments on commit 365a928

Please sign in to comment.