Вы должны передать обработчик complete
в качестве третьего аргумента для подписки.
В своем коде просто переместите закрывающую скобку в конец.
Измените этот код:
this.commerceCtrl.UpdateCategories(this.toSave).subscribe(data => {
}, error => {
this.mainFunction.showError(error)
}), // <===== Remove this parenthesis
() => {
this.mainFunction.showToast(this.localization.message_ok)
}; // <====== It should be here
К этому:
this.commerceCtrl.UpdateCategories(this.toSave).subscribe(
data => {
// next handler body
}, error => {
this.mainFunction.showError(error)
}, () => {
this.mainFunction.showToast(this.localization.message_ok)
}
);