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

Commit bf1be18

Browse files
fix: display dummy avatar if user has no avatar
1 parent daa8ffb commit bf1be18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

studio/src/app/components/core/app-navigation-actions/app-navigation-actions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class AppNavigationActions {
102102
}
103103

104104
private renderLoggedIn() {
105-
if (Utils.isLoggedIn(this.authUser) && this.photoUrl) {
105+
if (Utils.isLoggedIn(this.authUser)) {
106106
return <a class="ion-padding-end" onClick={(e: UIEvent) => this.openMenu(e)}>
107107
<app-avatar src={this.photoUrl}></app-avatar>
108108
</a>;

0 commit comments

Comments
 (0)