-
👋 This is how my routes look:
The route These routes are added by remix based on the file structure. Since users can belong to customers, or not. I programatically add the The route Anyone have any idea what's causing this? On the latest version of everything, and opted into all the v2 stuff. Thanks :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Does Currently, you have the For more info: https://remix.run/docs/en/1.19.3/file-conventions/route-files-v2#nested-urls-without-layout-nesting |
Beta Was this translation helpful? Give feedback.
Does
routes/user.$userId.tsx
have an<Outlet/>
?Currently, you have the
edit
route nested under the parent. If you don't want it nested, rename the route toroutes/user.$userId_.edit.tsx
. The trailing underscore means, "don't use this as a parent route."For more info: https://remix.run/docs/en/1.19.3/file-conventions/route-files-v2#nested-urls-without-layout-nesting