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/lib/hooks/useOTAUpdate.ts | |
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/lib/hooks/useOTAUpdate.ts')
-rw-r--r-- | src/lib/hooks/useOTAUpdate.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hooks/useOTAUpdate.ts b/src/lib/hooks/useOTAUpdate.ts index 55147329b..53eab300e 100644 --- a/src/lib/hooks/useOTAUpdate.ts +++ b/src/lib/hooks/useOTAUpdate.ts @@ -36,7 +36,7 @@ export function useOTAUpdate() { showUpdatePopup() } catch (e) { logger.error('useOTAUpdate: Error while checking for update', { - error: e, + message: e, }) } }, [showUpdatePopup]) |