diff options
Diffstat (limited to 'src/view/com/modals/InviteToScene.tsx')
-rw-r--r-- | src/view/com/modals/InviteToScene.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/modals/InviteToScene.tsx b/src/view/com/modals/InviteToScene.tsx index 6fe17b4dc..2b4d0ac29 100644 --- a/src/view/com/modals/InviteToScene.tsx +++ b/src/view/com/modals/InviteToScene.tsx @@ -86,7 +86,7 @@ export const Component = observer(function Component({ Toast.show('Invite sent') } catch (e: any) { setError('There was an issue with the invite. Please try again.') - store.log.error('Failed to invite user to scene', e.toString()) + store.log.error('Failed to invite user to scene', e) } } const onPressUndo = async (subjectDid: string, assertionUri: string) => { @@ -100,7 +100,7 @@ export const Component = observer(function Component({ setCreatedInvites(_omit(createdInvites, [subjectDid])) } catch (e: any) { setError('There was an issue with the invite. Please try again.') - store.log.error('Failed to delete a scene invite', e.toString()) + store.log.error('Failed to delete a scene invite', e) } } @@ -119,7 +119,7 @@ export const Component = observer(function Component({ Toast.show('Invite removed') } catch (e: any) { setError('There was an issue with the invite. Please try again.') - store.log.error('Failed to delete an invite', e.toString()) + store.log.error('Failed to delete an invite', e) } } |