Skip to content

Commit 4b607e1

Browse files
committed
set mvtId to 350001 if decideShouldEnforceLocalLogic is true
1 parent 9d2e717 commit 4b607e1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dotcom-rendering/src/components/SignInGateSelector.importable.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,11 @@ const buildAuxiaGateDisplayData = async (
397397
const readerPersonalData = await decideAuxiaProxyReaderPersonalData();
398398
const tagIds = tags.map((tag) => tag.id);
399399

400+
let mvtId = readerPersonalData.mvtId;
401+
if (decideShouldEnforceLocalLogic()) {
402+
mvtId = 350001; // to be outside the Auxia share of the Audience
403+
}
404+
400405
let should_show_legacy_gate_tmp;
401406

402407
if (!decideShouldEnforceLocalLogic() && isAuxiaAudience) {
@@ -434,7 +439,7 @@ const buildAuxiaGateDisplayData = async (
434439
tagIds,
435440
gateDismissCount,
436441
readerPersonalData.countryCode,
437-
readerPersonalData.mvtId,
442+
mvtId,
438443
should_show_legacy_gate_tmp,
439444
readerPersonalData.hasConsented,
440445
shouldServeDismissible,

0 commit comments

Comments
 (0)