diff --git a/frontend/index.js b/frontend/index.js index e6784ea7..12e49fe7 100644 --- a/frontend/index.js +++ b/frontend/index.js @@ -73,6 +73,15 @@ const Auth = ({ children }: AuthProps) => { }), }; + if (window.Bugsnag) { + Bugsnag.user = { + id: user.id, + name: user.name, + teamId: team.id, + team: team.name, + }; + } + authenticatedStores.collections.fetchAll(); }