Skip to content

Commit

Permalink
Update main.js with correct naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
mayabose authored Jan 24, 2024
1 parent 1c4515e commit c851d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (window.APP_CONFIG?.GOOGLE_TAG_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,
id: newUser.id, 'agency_id': newUser.agency_id, role: newUser.role.name, 'organization_id': newUser.tenant_id,

Check failure on line 27 in packages/client/src/main.js

View workflow job for this annotation

GitHub Actions / Build deployment artifacts / Build website deployment artifact

Unnecessarily quoted property 'agency_id' found

Check failure on line 27 in packages/client/src/main.js

View workflow job for this annotation

GitHub Actions / Build deployment artifacts / Build website deployment artifact

Unnecessarily quoted property 'organization_id' found
}));

// Install BootstrapVue
Expand Down

0 comments on commit c851d99

Please sign in to comment.