Content Manager Pagination Weird Behavior

In the Admin UI I am getting a some odd behavior in production where [object%20Object] is getting prepended to my paginated query string, this results in every page being page #1. This was happening in local development, however has since stopped, it is now only occurring in production. I am also on Strapi v5.0.4 w/ Node 20.18.0.

For example if I navigate to /admin/content-manager/collection-types/api::author.author?pageSize=10&page=2&sort=name%3AASC&plugins%5Bi18n%5D%5Blocale%5D=en it sends a fetch request to /content-manager/collection-types/api::author.author?[object%20Object]?page=2&pageSize=10&sort=name%3AASC&locale=en, please note the ?[object%20Object]?page=2.

This topic has been created from a Discord post (1293667482141196388) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

After nuking my package-lock.json and doing a fresh npm install I am able to reproduce this locally aswell