fix(ui) - error message handle obj

This commit is contained in:
Shekar Siri 2022-04-25 12:04:08 +02:00
parent 920d1104e9
commit 8a69d24c1d

View file

@ -23,7 +23,7 @@ function onReject() {
}
function onError(e) {
toast.error(e);
toast.error(typeof e === 'string' ? e : e.message);
}