From 92fa3d53a5f2c2867533e7fc9c98e7783f04683e Mon Sep 17 00:00:00 2001 From: nklhrstv Date: Thu, 27 Oct 2022 18:05:48 +0300 Subject: [PATCH] suppress error toast for LibrarySyncWithAPIPlanned and anonymous users --- src/App/ServicesToaster.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App/ServicesToaster.js b/src/App/ServicesToaster.js index da1a654af..395c1fed2 100644 --- a/src/App/ServicesToaster.js +++ b/src/App/ServicesToaster.js @@ -15,6 +15,10 @@ const ServicesToaster = () => { break; } + if (args.source.event === 'LibrarySyncWithAPIPlanned' && args.source.args.uid === null) { + break; + } + toast.show({ type: 'error', title: args.source.event,