@shopify/app-bridge Navigations works differently for different user

I have an active embedded app. In the last week it seems like there was a change in the app-bridge navigation. We’re redirecting to a payment like that (same as in the docs) :

import { useNavigate } from '@shopify/app-bridge-react';
...
// In the component
const navigate = useNavigate();
...
// When the user tries to upgrade
() => {
  navigate("https://admin.shopify.com/store/shop-name/charges/....")
}

And for some users it navigates to the correct page to and for others it navigates to https://admin.shopify.com/store/shop-name/store/shop-name/charges/... (note the double store/shop-name)

The error occurs on my user, but not on my partner’s user. Same laptop, same browser. Any ideas how this is possible?

Thanks

Resolved by changing useNavigate to:

const redirect = Redirect.create(app);
redirect.dispatch(Redirect.Action.REMOTE, url);

It seems like @Shopify_77 /app-bridge-react has some fuzzy logic when it comes to redirecting to admin.shopify pages