// "@shopify/app-bridge": "3.7.10"
import { Redirect, Toast } from '@shopify/app-bridge/actions';
// goto https://admin.shopify.com/store/{store}/settings/apps
Redirect.create(app).dispatch(Redirect.Action.ADMIN_PATH, '/apps');
We have implemented a process in the above code to navigate to the Shopify settings app screen in specific cases. However, this process has ceased to function. A completely blank screen is displayed, and no further action occurs. The issue was first noticed on 2024/03/06 at 09:00.
Upon using the code provided below, the functionality was restored.
// "@shopify/app-bridge": "3.7.10"
import { Redirect, Toast } from '@shopify/app-bridge/actions';
// goto https://admin.shopify.com/store/{store}/settings/apps
Redirect.create(app).dispatch(Redirect.Action.ADMIN_PATH, '/settings/apps');
Could you please explain why it stopped working? Additionally, is the resolution in the form provided below acceptable?