79520975

Date: 2025-03-19 17:42:48
Score: 1.5
Natty:
Report link

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>
  );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aasem Shoshari