Skip to content

Commit

Permalink
MWPW-158059 [MEP] PHONE_SIZE limit is too large to exclude smaller ta…
Browse files Browse the repository at this point in the history
…blets
  • Loading branch information
vgoodric committed Sep 9, 2024
1 parent 38beea9 commit 6507b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/features/personalization/personalization.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import { getEntitlementMap } from './entitlements.js';

/* c8 ignore start */
const PHONE_SIZE = window.screen.width < 768 || window.screen.height < 768;
const PHONE_SIZE = window.screen.width < 600 || window.screen.height < 600;
export const PERSONALIZATION_TAGS = {
all: () => true,
chrome: () => navigator.userAgent.includes('Chrome') && !navigator.userAgent.includes('Edg'),
Expand Down

0 comments on commit 6507b92

Please sign in to comment.