Skip to content

Commit fa046ca

Browse files
committed
use connect_info on both DEV and PROD env
1 parent e44a5a5 commit fa046ca

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/routes/settings/helpers/settings.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ export const blankTraits = {
3030
},
3131
}
3232

33-
// as now DEV environment supports only `connect_info` and PROD environment supports only `customer_info`
34-
// choose depend on ENV
35-
export const customerTraitId = ENV === 'DEV' ? 'connect_info' : 'customer_info'
33+
// as now both DEV and PROD environments support `connect_info` trait we always use it
34+
export const customerTraitId = 'connect_info'
3635

3736
/**
3837
* Format row member traits data to the format which can be rendered by the form

0 commit comments

Comments
 (0)