Skip to content

Commit

Permalink
Update main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mayabose committed Jan 24, 2024
1 parent 9a548e9 commit 6908b5c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/client/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,19 @@ if (window.APP_CONFIG?.GOOGLE_TAG_ID) {
store.watch((state) => state.users.loggedInUser, (newUser) => setUserForGoogleAnalytics(newUser));
}

<<<<<<< Updated upstream
<<<<<<< HEAD
store.watch((state) => state.users.loggedInUser, (newUser) => datadogRum.setUser({ id: newUser.id, 'agency.id': newUser.agency_id, 'role': newUser.role.name, 'organization.id': newUser.tenant_id }));
=======
store.watch((state) => state.users.loggedInUser, (newUser) => datadogRum.setUser({
id: newUser.id, 'agency.id': newUser.agency_id, role: newUser.role.name, 'organization.id': newUser.tenant_id,
}));
>>>>>>> addUserInfo
=======
store.watch((state) => state.users.loggedInUser, (newUser) => datadogRum.setUser({
id: newUser.id, 'agency.id': newUser.agency_id, role: newUser.role.name, 'organization.id': newUser.tenant_id,
}));
>>>>>>> Stashed changes

// Install BootstrapVue
Vue.use(BootstrapVue);
Expand Down

0 comments on commit 6908b5c

Please sign in to comment.