Skip to content

Commit a200fdb

Browse files
Merge pull request #19879 from mozilla/FXA-12852
fix(settings): Keep loading indicator consistent for 3rd party signin
2 parents ed91f67 + 1f6e0ef commit a200fdb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/fxa-settings/src/pages/PostVerify/ThirdPartyAuthCallback

packages/fxa-settings/src/pages/PostVerify/ThirdPartyAuthCallback/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import React, { useEffect, useRef, useCallback } from 'react';
66
import { hardNavigate } from 'fxa-react/lib/utils';
77
import { RouteComponentProps, useLocation } from '@reach/router';
8-
import LoadingSpinner from 'fxa-react/components/LoadingSpinner';
8+
import { AppLayout } from '../../../components/AppLayout';
99
import {
1010
useAccount,
1111
useAuthClient,
@@ -258,7 +258,7 @@ const ThirdPartyAuthCallback = ({
258258
}
259259
}, [integration, navigateNext]);
260260

261-
return <LoadingSpinner fullScreen />;
261+
return <AppLayout cmsInfo={integration.getCmsInfo()} loading />;
262262
};
263263

264264
export default ThirdPartyAuthCallback;

0 commit comments

Comments
 (0)