## The problem
Reported in Microsoft Entra ID: postLogoutRedirectUri not working when authority url contains a tenant ID.
## The fix
For the post-logout redirect to work, all of MSAL's logout requirements must hold (the maintainer points to the logout docs checklist). Two confirmed fixes from the thread:
1. Register the post-logout URI in the Azure portal: App Registrations > Authentication > add your logout URL as a redirect URI. Users confirmed the redirect started working a few minutes after whitelisting it.
2. Include `logout_hint` (taken from the `login_hint` claim) in the logout request. Several users confirmed this fixed the redirect for them.
Background from the maintainer: if the signed-in tenant differs from the logout tenant (guest/external users), the service finds no session and refuses to redirect, so also check you are logging out of the same tenant you signed into. If everything above is done and it still fails, raise it through Azure Support so the service teams get looped in.