File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
RecentActivity/CreateEnvironmentWizard/RegisterStep Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ export const isWorkEmail = (email: string): boolean => {
77 }
88
99 const domain = email . slice ( startIndex + 1 ) ;
10- return ! ( freeEmailDomains as string [ ] ) . includes ( domain ) ;
10+ return ! freeEmailDomains . includes ( domain ) ;
1111} ;
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ export const isWorkEmail = (email: string): boolean => {
77 }
88
99 const domain = email . slice ( startIndex + 1 ) ;
10- return ! ( freeEmailDomains as string [ ] ) . includes ( domain ) ;
10+ return ! freeEmailDomains . includes ( domain ) ;
1111} ;
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ export const isWorkEmail = (email: string): boolean => {
77 }
88
99 const domain = email . slice ( startIndex + 1 ) ;
10- return ! ( freeEmailDomains as string [ ] ) . includes ( domain ) ;
10+ return ! freeEmailDomains . includes ( domain ) ;
1111} ;
You can’t perform that action at this time.
0 commit comments