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