Kyle Zheng

Results 4 comments of Kyle Zheng

I ran into this usecase and tried messing around for a solution. Just making `setSearchParams` support key only params isn't too bad, except since URLSearchParams is used to store/merge params,...

A workaround is to downgrade to v1.18.18. It seems to have been introduced in v1.18.19, and might be this commit fe35981, but I don't really understand it. It supposedly allows...

I faced this issue before and found this somewhat helpful post https://www.answeroverflow.com/m/1256901524974604308. Basically add `{deferStream: true}` as second parameter to `createAsync()`. Here is what is happening - The html starts...

If you want a quick fix, use `setCookie()` before throwing instead of adding header to `redirect()`. I know that will work for sure now https://github.com/solidjs/solid-start/issues/1703 ```js setCookie("val", "1234", { path:...