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 bec8a32 + 20cf8e0 commit c351e9aCopy full SHA for c351e9a
dotcom-rendering/src/components/SignInGateSelector.importable.tsx
@@ -656,13 +656,15 @@ const SignInGateSelectorAuxia = ({
656
657
useOnce(() => {
658
void (async () => {
659
- const data = await buildAuxiaGateDisplayData(
660
- contributionsServiceUrl,
661
- pageId,
662
- editionId,
663
- );
664
- if (data !== undefined) {
665
- setAuxiaGateDisplayData(data);
+ if (!isSignedIn) {
+ const data = await buildAuxiaGateDisplayData(
+ contributionsServiceUrl,
+ pageId,
+ editionId,
+ );
+ if (data !== undefined) {
666
+ setAuxiaGateDisplayData(data);
667
+ }
668
}
669
})().catch((error) => {
670
console.error('Error fetching Auxia display data:', error);
0 commit comments