You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good point, we are definitely not encoding that either. Should be similar to #111. Just to be clear, the expected should be /login?redirect=%2Ffoo%23bar right? (Not %2F which is /)
If the current URL contains a hash/fragment, i.e.
/foo#bar
, it is not included in theredirect
query param (assumingallowRedirectBack
is enabled).Expected:
/login?redirect=%2Ffoo%23bar
Actual:
/login?redirect=%2Ffoo
Here's a workaround (assuming
routerActions.replace
is your existingredirectAction
)The text was updated successfully, but these errors were encountered: