We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bca8aa3 + eb2e93e commit 151a7caCopy full SHA for 151a7ca
dotcom-rendering/src/components/SignInGateSelector.importable.tsx
@@ -342,11 +342,9 @@ const decideShouldServeDismissible = (): boolean => {
342
343
// This may be extended in the future.
344
345
- // const params = new URLSearchParams(window.location.search);
346
- // const value: string | null = params.get('utm_source');
347
- // return value === 'newsshowcase';
348
-
349
- return false;
+ const params = new URLSearchParams(window.location.search);
+ const value: string | null = params.get('utm_source');
+ return value === 'newsshowcase';
350
};
351
352
const decideShowDefaultGate = (): ShowGateValues => {
0 commit comments