SolidJSS
SolidJSโ€ข2y agoโ€ข
8 replies
Carl (klequis)

OptionalParams in route not working

I'm not getting the expected result using optional params

- routes
-- users
---- [[id]].tsx
---- index.tsx
-- [...404].tsx

url: http://localhost:3000/users/1/2

[[id]].tsx
export default function UsersOptionalParams() {
  return (
    <div class="component">
      <p class="file-name">routes/users/[[id]].jsx</p>
    </div>
  );
}


It is routing to [...404]
Was this page helpful?