diff --git a/src/components/clip/ClipViewLocal.tsx b/src/components/clip/ClipViewLocal.tsx index e50074d..5afba62 100644 --- a/src/components/clip/ClipViewLocal.tsx +++ b/src/components/clip/ClipViewLocal.tsx @@ -21,13 +21,11 @@ export default function ClipViewLocal({}) { Clipboard.getStringAsync() .then(value => { let newClip = {content: value}; - console.log(value); dispatch(localClipAddToList(newClip)); setClips([...clips, newClip]); toast.show('copied "' + value + '" into history'); }) .catch(error => { - console.log(error); toast.show('could not retreive last copied element :('); }); } diff --git a/src/components/notif/NotifList.tsx b/src/components/notif/NotifList.tsx index 4217470..4b551b6 100644 --- a/src/components/notif/NotifList.tsx +++ b/src/components/notif/NotifList.tsx @@ -19,6 +19,7 @@ export default function NotifList({ )} keyExtractor={item => nanoid()} + inverted={true} /> ); } else { @@ -34,6 +35,7 @@ export default function NotifList({ /> )} keyExtractor={item => nanoid()} + inverted={true} /> ); } diff --git a/src/components/notif/NotifViewLocal.tsx b/src/components/notif/NotifViewLocal.tsx index 507a826..07ea768 100644 --- a/src/components/notif/NotifViewLocal.tsx +++ b/src/components/notif/NotifViewLocal.tsx @@ -33,13 +33,11 @@ export default function NotifViewLocal({}) { title: 'placeholder title', content: 'placeholder content', }; - console.log(value); dispatch(localNotifAddToList(newNotif)); setNotifs([...notifs, newNotif]); toast.show('added "' + value + '" into history'); }) .catch(error => { - console.log(error); toast.show('could not retreive last notification :('); }); }