hi there, I have a page which displays a table. each row has a button which should open a modal. currently I have this folder structure:
orders
|- @modal
| |- modal
| | |- default.tsx
| | |- page.tsx
| |
| |- page.tsx
| |- default.tsx
|
|- default.tsx
|- layout.tsx
|- page.tsx
|- table.tsx
i just created all these default.tsx files, because I just wanted to make sure the problem is not that they are missing. table.tsx is just the table component. in the layout I am getting modal as prop and display it. now when the button in the table is clicked, it redirects from /orders to /orders/modal which should just display the current page with the table but the modal should be on top. what it actually does, is giving me a 404. What am I doing wrong?