Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit ff88e00

Browse files
committed
welcome screen: show for everyone without avatar
1 parent c4017ac commit ff88e00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/structures/HomePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const HomePage: React.FC<IProps> = ({ justRegistered = false }) => {
101101
}
102102

103103
let introSection;
104-
if (justRegistered) {
104+
if (justRegistered || !!OwnProfileStore.instance.getHttpAvatarUrl(AVATAR_SIZE)) {
105105
introSection = <UserWelcomeTop />;
106106
} else {
107107
const brandingConfig = SdkConfig.getObject("branding");

0 commit comments

Comments
 (0)