Fix inverted logic for showing UserWelcomeTop component (#9164)

This commit is contained in:
Michael Telatynski 2022-08-10 11:22:15 +01:00 committed by GitHub
parent fdde6b1428
commit 350341d13d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,8 +97,8 @@ const HomePage: React.FC<IProps> = ({ justRegistered = false }) => {
return <EmbeddedPage className="mx_HomePage" url={pageUrl} scrollbar={true} />;
}
let introSection;
if (justRegistered || !!OwnProfileStore.instance.getHttpAvatarUrl(AVATAR_SIZE)) {
let introSection: JSX.Element;
if (justRegistered || !OwnProfileStore.instance.getHttpAvatarUrl(AVATAR_SIZE)) {
introSection = <UserWelcomeTop />;
} else {
const brandingConfig = SdkConfig.getObject("branding");