Order management view with Opti ID
Fix order management view errors caused by Opti ID authentication in Commerce Connect.
The order management view fails to display when Opti ID authentication is enabled:
TypeError: t.sent(...) data.map is not a functionThe order management API requests are redirected to the login page.
To resolve this, use the following code in Startup:
services.AddOptimizelyIdentity(useAsDefault: false, options =>
{
options.AdditionalPaths.Add("/csr"); // Order management view
});Updated 22 days ago
