Search parameters are not persistent over page navigation. Not sure what the optimised way to resolve this is but workarounds / fixes we have tested are as follows:
ReportsMenu.jsx We added const currentSearch = location.search; which is then used, as shown below, in the links statements.

BottomMenu.jsx we added const deviceId = useSelector((state) => state.devices.selectedId); which is then used, as shown below, in the navigation statement for reports selection.

Search parameters are not persistent over page navigation. Not sure what the optimised way to resolve this is but workarounds / fixes we have tested are as follows: