remove erorr console log and add error toast (#10018)

This commit is contained in:
Merissa Weinstein 2024-07-09 15:06:36 -05:00 committed by GitHub
parent 2fe07f3d8e
commit 64ad336d28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export class CollectionsComponent implements OnInit {
this.platformUtilsService.showToast("success", null, this.i18nService.t("editedItem"));
return true;
} catch (e) {
this.logService.error(e);
this.platformUtilsService.showToast("error", this.i18nService.t("errorOccurred"), e.message);
return false;
}
}