raulbalestra
raulbalestra
Hi everyone, I was able to reproduce the reported issue. The "Code" field value is being automatically filled in other languages, even when the "Enable localization for this field" option...
Thanks for reporting this issue. The error you're seeing: ``` TypeError: providersRegistry.register is not a function ``` is due to a breaking change in Strapi v5. In Strapi v4, custom...
could not reproduce in V5
Root Cause Analysis The issue comes from the hardcoded redirect in `rtkQueryUnauthorizedMiddleware` in packages/core/admin/admin/src/core/store/configure.ts: if (isRejected(action) && action.payload?.status === 401) { dispatch(logout()); window.location.href = '/admin/auth/login'; return; } This logic ignores...