diff --git a/src/components/clip/ClipViewRemote.tsx b/src/components/clip/ClipViewRemote.tsx index 5292164..66cc7b3 100644 --- a/src/components/clip/ClipViewRemote.tsx +++ b/src/components/clip/ClipViewRemote.tsx @@ -31,7 +31,7 @@ export default function ClipViewRemote() { toast.show('fetched latest clips from remote'); }) .catch(response => { - toast.show(response); + toast.show(JSON.stringify(response)); toast.show('failed to fetch latest clips'); }); } diff --git a/src/components/notif/NotifViewRemote.tsx b/src/components/notif/NotifViewRemote.tsx index ea530b8..224e847 100644 --- a/src/components/notif/NotifViewRemote.tsx +++ b/src/components/notif/NotifViewRemote.tsx @@ -32,7 +32,7 @@ export default function NotifViewRemote() { toast.show('fetched latest notifications from remote'); }) .catch(response => { - toast.show(response); + toast.show(JSON.stringify(response)); toast.show('failed to fetch latest notifications'); }); }