File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
dotcom-rendering/src/components Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ export const isNPageOrHigherPageView = (n = 2): boolean => {
14
14
15
15
const { count = 0 } = dailyCount ;
16
16
17
+ console . log ( `counter inside isNPageOrHigherPageView: ${ count } ` ) ;
18
+
17
19
return count >= n ;
18
20
} ;
19
21
Original file line number Diff line number Diff line change @@ -397,6 +397,11 @@ const buildAuxiaGateDisplayData = async (
397
397
const readerPersonalData = await decideAuxiaProxyReaderPersonalData ( ) ;
398
398
const tagIds = tags . map ( ( tag ) => tag . id ) ;
399
399
400
+ let mvtId = readerPersonalData . mvtId ;
401
+ if ( decideShouldEnforceLocalLogic ( ) ) {
402
+ mvtId = 350001 ; // to be outside the Auxia share of the Audience
403
+ }
404
+
400
405
let should_show_legacy_gate_tmp ;
401
406
402
407
if ( ! decideShouldEnforceLocalLogic ( ) && isAuxiaAudience ) {
@@ -434,7 +439,7 @@ const buildAuxiaGateDisplayData = async (
434
439
tagIds ,
435
440
gateDismissCount ,
436
441
readerPersonalData . countryCode ,
437
- readerPersonalData . mvtId ,
442
+ mvtId ,
438
443
should_show_legacy_gate_tmp ,
439
444
readerPersonalData . hasConsented ,
440
445
shouldServeDismissible ,
You can’t perform that action at this time.
0 commit comments