Open blakeley opened 1 year ago
https://github.com/BuilderIO/qwik/blob/374f25e7c2759651cffa652f2bd16241e53c9c24/packages/qwik-city/runtime/src/types.ts#L65
When navigating with a , params used on the page can temporarily be undefined. Navigation should either not render the current page with the next route's param values, or the type of params should be changed to be
undefined
readonly params: Readonly<Record<string, string | undefined>>;
Good point, would you be willing to send a PR?
https://github.com/BuilderIO/qwik/blob/374f25e7c2759651cffa652f2bd16241e53c9c24/packages/qwik-city/runtime/src/types.ts#L65
When navigating with a , params used on the page can temporarily be
undefined
. Navigation should either not render the current page with the next route's param values, or the type of params should be changed to be