Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed the VerificationSucess Screen loader #9584

Merged
merged 5 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions frontend/src/SuccessInfoScreen/VerificationSuccessInfoScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,16 @@ export const VerificationSuccessInfoScreen = function VerificationSuccessInfoScr

return (
<div>
{isGettingConfigs && (
<div className="common-auth-section-whole-wrapper page">
<div className="common-auth-section-left-wrapper">
<div className="loader-wrapper">
<ShowLoading />
</div>
</div>
</div>
)}

{showJoinWorkspace && !showOnboarding && (
<div className="page common-auth-section-whole-wrapper">
<div className="common-auth-section-left-wrapper">
Expand Down
1 change: 0 additions & 1 deletion frontend/src/_helpers/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,6 @@ export const setWindowTitle = async (pageDetails, location) => {
'account-settings': pageTitles.ACCOUNT_SETTINGS,
settings: pageTitles.SETTINGS,
'workspace-constants': pageTitles.WORKSPACE_CONSTANTS,
invitations: '',
};
const whiteLabelText = defaultWhiteLabellingSettings.WHITE_LABEL_TEXT;
let pageTitleKey = pageDetails?.page || '';
Expand Down