Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 248fecf

Browse files
fix issue for not logged in users
1 parent 8c50077 commit 248fecf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const App = () => {
6161
profileUrl={
6262
location.pathname.includes("/self-service")
6363
? "/self-service/profile/"
64-
: `/profile/${auth.profile.handle}`
64+
: `/profile/${_.get(auth, "profile.handle", "")}`
6565
}
6666
hideSwitchTools={isNavigationDisabled}
6767
path="/*"

0 commit comments

Comments
 (0)