about summary refs log tree commit diff
path: root/src/view/com/notifications/Feed.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/notifications/Feed.tsx')
-rw-r--r--src/view/com/notifications/Feed.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/notifications/Feed.tsx b/src/view/com/notifications/Feed.tsx
index 2088acbac..015aaaa23 100644
--- a/src/view/com/notifications/Feed.tsx
+++ b/src/view/com/notifications/Feed.tsx
@@ -73,7 +73,7 @@ export function Feed({
       await checkUnread({invalidate: true})
     } catch (err) {
       logger.error('Failed to refresh notifications feed', {
-        error: err,
+        message: err,
       })
     } finally {
       setIsPTRing(false)
@@ -86,7 +86,7 @@ export function Feed({
     try {
       await fetchNextPage()
     } catch (err) {
-      logger.error('Failed to load more notifications', {error: err})
+      logger.error('Failed to load more notifications', {message: err})
     }
   }, [isFetching, hasNextPage, isError, fetchNextPage])