Merged in fix/SW-3381-move-loginbutton-to-design-syste (pull request #2780)

fix(SW-3381): Fixed login redirect URL

* fix(SW-3381): Fixed login redirect URL


Approved-by: Anton Gunnarsson
This commit is contained in:
Hrishikesh Vaipurkar
2025-09-10 06:51:10 +00:00
parent 4550ddec53
commit e95d316f52
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ import styles from "./myPagesMenuWrapper.module.css"
export default function MyPagesMenuWrapper() {
const intl = useIntl()
const lang = useLang()
const loginPathname = useLazyPathname()
const loginPathname = useLazyPathname({ includeSearchParams: true })
const { data: session } = useSession()
const isUserLoggedIn = isValidClientSession(session)