@sambapete can you try to rerun while adding the following create/adding the following patch
from tutor import hooks
hooks.Filters.ENV_PATCHES.add_item(
(
"openedx-lms-production-settings",
"""
MFE_CONFIG["ECOMMERCE_BASE_URL"] = "<your url to your ecommerce service>"
"""
),
)
The above patch should mitigate @arbrandes point above, until the plugin is updated.
Another point is can you ensure from the network traffic in browser there is a call to mfe_config
there should be a call to it and it after adding the above patch it should return ECOMMERCE_BASE_URL
. Just note that the API uses browser cache so you migh not see the change instantly