diff --git a/src/components/clip/ClipViewRemote.tsx b/src/components/clip/ClipViewRemote.tsx index 89f9d91..5292164 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 => { - console.log(response); + toast.show(response); toast.show('failed to fetch latest clips'); }); } diff --git a/src/components/notif/NotifViewRemote.tsx b/src/components/notif/NotifViewRemote.tsx index d6edb13..ea530b8 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 => { - console.log(response); + toast.show(response); toast.show('failed to fetch latest notifications'); }); }