Hi! Hoping someone can help guide me in the right direction. I'm creating a single page app with a nested structure like /path/:path_id/subpath/:subpath_id. I can use logic to show the correct pages according to the path and params. However, I'm having trouble with viewing the pages in the editor when there is no subpath. To be clear, it works fine in the preview with actual data.
For example, if I have something like /teams/123/projects/456 using the test params I see my project detail page in the editor.
However, if I just want to view the teams and have /teams/123 where the subpath and :subpath_id are meant to be null, I don't see anything in the editor because it doesn't match my page.
Is this because there's actually no option to set a path param to null? I can only leave it blank or add a string. Does anyone know if there's a workaround because otherwise I can't view my page in the editor without removing the params and re-adding them any time I need to edit something.
Thanks for your help!!