Validate Search different output and input types?
I used to have the following setup:
which makes sense to me, when I render FooBar i expect to navigate to '/zzz', with default params
This setup allowed me to keep all the defaults in a single place (the schema)
But after updating to the newest version this breaks
How can I have my strongly typed search params inside of my component, while having freedom to pass in any input into them?
which makes sense to me, when I render FooBar i expect to navigate to '/zzz', with default params
This setup allowed me to keep all the defaults in a single place (the schema)
But after updating to the newest version this breaks
SearchParamOptions are now using MakeRequiredSearchParams, which disallows trueHow can I have my strongly typed search params inside of my component, while having freedom to pass in any input into them?