File tree Expand file tree Collapse file tree 1 file changed +9
-13
lines changed
Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -118,27 +118,23 @@ var constructor = function () {
118118
119119 self . userAttributes = filteredAttributes ;
120120
121- var selectPlacementsAttributes = mergeObjects ( filteredAttributes , {
122- mpid : mpid ,
123- } ) ;
124-
125- var selectPlacementsOptions = mergeObjects ( options , {
126- attributes : selectPlacementsAttributes ,
127- } ) ;
128-
129121 var optimizelyAttributes =
130122 self . onboardingExpProvider === 'Optimizely'
131123 ? fetchOptimizely ( )
132124 : { } ;
133125
134- var selectPlacementsOptions = mergeObjects (
135- options ,
126+ var selectPlacementsAttributes = mergeObjects (
127+ filteredAttributes ,
128+ optimizelyAttributes ,
136129 {
137- attributes : selectPlacementsAttributes ,
138- } ,
139- optimizelyAttributes
130+ mpid : mpid ,
131+ }
140132 ) ;
141133
134+ var selectPlacementsOptions = mergeObjects ( options , {
135+ attributes : selectPlacementsAttributes ,
136+ } ) ;
137+
142138 self . launcher . selectPlacements ( selectPlacementsOptions ) ;
143139 }
144140
You can’t perform that action at this time.
0 commit comments