File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ export const PORTAL_USER_ROLES = {
91
91
92
92
export const TFM_USER_TEAMS = {
93
93
UNDERWRITERS : 'UNDERWRITERS' ,
94
- UNDERWRITER_MANAGER : 'UNDERWRITER_MANAGERS' ,
94
+ UNDERWRITER_MANAGERS : 'UNDERWRITER_MANAGERS' ,
95
95
BUSINESS_SUPPORT : 'BUSINESS_SUPPORT' ,
96
96
TEAM1 : 'TEAM1' ,
97
97
RISK_MANAGERS : 'RISK_MANAGERS' ,
Original file line number Diff line number Diff line change 1
1
const MOCK_TFM_USERS = require ( '../../utils/mock-data-loader/tfm/mocks/users' ) ;
2
2
const { TFM_USER_TEAMS } = require ( './constants.fixture' ) ;
3
3
4
- const UNDERWRITER_MANAGER_1 = MOCK_TFM_USERS . find ( ( user ) => user . teams . includes ( TFM_USER_TEAMS . UNDERWRITER_MANAGER ) && user . username === 'UNDERWRITER_MANAGER_1' ) ;
4
+ const UNDERWRITER_MANAGER_1 = MOCK_TFM_USERS . find ( ( user ) => user . teams . includes ( TFM_USER_TEAMS . UNDERWRITER_MANAGERS ) && user . username === 'UNDERWRITER_MANAGER_1' ) ;
5
5
6
- const UNDERWRITER_MANAGER_2 = MOCK_TFM_USERS . find ( ( user ) => user . teams . includes ( TFM_USER_TEAMS . UNDERWRITER_MANAGER ) && user . username === 'UNDERWRITER_MANAGER_2' ) ;
6
+ const UNDERWRITER_MANAGER_2 = MOCK_TFM_USERS . find ( ( user ) => user . teams . includes ( TFM_USER_TEAMS . UNDERWRITER_MANAGERS ) && user . username === 'UNDERWRITER_MANAGER_2' ) ;
7
7
8
8
const UNDERWRITER_1 = MOCK_TFM_USERS . find ( ( user ) => user . teams . includes ( TFM_USER_TEAMS . UNDERWRITERS ) && user . username === 'UNDERWRITER_1' ) ;
9
9
You can’t perform that action at this time.
0 commit comments