in which component are you using the providers ? try to create layout component specifically for the /client/[id]/onboarding route.
For example:
import { Provider } from '...';
export default function OnboardingLayout({ children }) {
return (
<Provider>
{children}
</Provider>
);
}