Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: Inquiry Regarding Non-Functioning Redirect Process

Solved

Inquiry Regarding Non-Functioning Redirect Process

KyoheiYamaguchi
Shopify Partner
6 1 1

 

 

// "@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?

Accepted Solution (1)

KyoheiYamaguchi
Shopify Partner
6 1 1

This is an accepted solution.

I received a response that it was a bug.
It seems to be resolved now.

View solution in original post

Reply 1 (1)

KyoheiYamaguchi
Shopify Partner
6 1 1

This is an accepted solution.

I received a response that it was a bug.
It seems to be resolved now.