diff options
author | Eric Bailey <git@esb.lol> | 2024-01-25 23:11:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-25 21:11:01 -0800 |
commit | bc502edae150173d7b5ead0eddb739994929ac97 (patch) | |
tree | bfe4f3b9850d03339a73495db48977524bb510f8 /src/view/screens/ProfileList.tsx | |
parent | 3371038f7d8b740f2415d3a54dc99b69e0598042 (diff) | |
download | voidsky-bc502edae150173d7b5ead0eddb739994929ac97.tar.zst |
Clean up some sentry logs (#2630)
* Change prop name for sentry ingestion * Fix test * Add default object
Diffstat (limited to 'src/view/screens/ProfileList.tsx')
-rw-r--r-- | src/view/screens/ProfileList.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx index f41cfa0b1..17c93b037 100644 --- a/src/view/screens/ProfileList.tsx +++ b/src/view/screens/ProfileList.tsx @@ -261,7 +261,7 @@ function Header({rkey, list}: {rkey: string; list: AppBskyGraphDefs.ListView}) { } } catch (e) { Toast.show(_(msg`There was an issue contacting the server`)) - logger.error('Failed to toggle pinned feed', {error: e}) + logger.error('Failed to toggle pinned feed', {message: e}) } }, [list.uri, isPinned, pinFeed, unpinFeed, _]) |