diff options
Diffstat (limited to 'src/view/com/notifications/Feed.tsx')
-rw-r--r-- | src/view/com/notifications/Feed.tsx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/view/com/notifications/Feed.tsx b/src/view/com/notifications/Feed.tsx index 6406a598b..59b83bbab 100644 --- a/src/view/com/notifications/Feed.tsx +++ b/src/view/com/notifications/Feed.tsx @@ -39,20 +39,14 @@ export const Feed = observer(function Feed({ view .refresh() .catch(err => - view.rootStore.log.error( - 'Failed to refresh notifications feed', - err.toString(), - ), + view.rootStore.log.error('Failed to refresh notifications feed', err), ) } const onEndReached = () => { view .loadMore() .catch(err => - view.rootStore.log.error( - 'Failed to load more notifications', - err.toString(), - ), + view.rootStore.log.error('Failed to load more notifications', err), ) } let data |