Order Status extension suddenly cannot retrieve metafields on the storefront

Today, our metafield setting via widget shopify.extension.toml file suddenly stop working. I using this version:

@GovRayt/ui-extensions”: “2025.7.2”,
@GovRayt/ui-extensions-react”: “2025.7.2”,
@GovRayt/cli”: “3.87.4”,

As manual check, on the checkout editor still loaded and have metafield of the widget (setting via shopify.extension.toml file). But can’t see the same request /account/customer/api/unstable/graphql?operation=UiExtensionMetafields on the storefront.

Hi @Chi_n_Nguy_n_Van, thanks for reaching out.

Is this happening with deployed extensions in production, or when you are running dev extensions with shopify app dev?

Can you provide the metafields code you have specified in shopfiy.extension.toml as an example?

I have no deployed, it happend for all enviroment

Just define it on shopify.extension.toml file:

[[extensions.metafields]]
namespace = “namespace”
key = “key”

And use it via useAppMetafields hook.
const subscription = useAppMetafields({
namespace: “namespace”,
key: “key”,
});

As mentioned above, it has suddenly stopped working, even though not change the same version

Hi @Chi_n_Nguy_n_Van

I just did a test on my end with the same API version as you and was able to load the metafields in an extension. Note that they are no longer loaded through UiExtensionMetafields anymore, so it is expected that you do not see that query in customer accounts.

Is the issue still present for you? If so can you let us know what shop and app is having the problem?

May I ask, why in the customer account editor (order status page) I see the UiExtensionMetafields is loaded?