We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b89ea5 commit 3e22ba6Copy full SHA for 3e22ba6
src-ts/header/Header.tsx
@@ -80,13 +80,13 @@ const Header: FC = () => {
80
signIn() { window.location.href = authUrlLogin() },
81
signOut() { window.location.href = authUrlLogout },
82
signUp() { window.location.href = authUrlSignup() },
83
- toolName: activeToolName ?? '',
84
- toolRoot: activeToolRoute ?? '',
+ toolName: activeToolName,
+ toolRoot: activeToolRoute,
85
type: 'tool',
86
user: profile ? {
87
handle: profile.handle,
88
initials: `${profile.firstName.charAt(0)}${profile.lastName.charAt(0)}`,
89
- photoURL: profile.photoURL ?? '',
+ photoUrl: profile.photoURL,
90
userId: profile.userId,
91
} : undefined,
92
},
0 commit comments