about summary refs log tree commit diff
path: root/src/view/com/profile/ProfileFollowers.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/profile/ProfileFollowers.tsx')
-rw-r--r--src/view/com/profile/ProfileFollowers.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/profile/ProfileFollowers.tsx b/src/view/com/profile/ProfileFollowers.tsx
index 87d519ed8..411ae6c17 100644
--- a/src/view/com/profile/ProfileFollowers.tsx
+++ b/src/view/com/profile/ProfileFollowers.tsx
@@ -41,7 +41,7 @@ export function ProfileFollowers({name}: {name: string}) {
     try {
       await refetch()
     } catch (err) {
-      logger.error('Failed to refresh followers', {error: err})
+      logger.error('Failed to refresh followers', {message: err})
     }
     setIsPTRing(false)
   }, [refetch, setIsPTRing])
@@ -51,7 +51,7 @@ export function ProfileFollowers({name}: {name: string}) {
     try {
       await fetchNextPage()
     } catch (err) {
-      logger.error('Failed to load more followers', {error: err})
+      logger.error('Failed to load more followers', {message: err})
     }
   }