Johan Bergman

Results 11 comments of Johan Bergman

What about this API? ```js function App() { // Start fetching the user data without suspending. const userResource = useSWRSuspense('/api/user') // Start fetching the movies data without suspending. const moviesResource...

@shuding Maybe make the api *both* suspense and not suspense at the same time? ```js function App() { // fooData and barData are only meant for dependent fetching, can be...

Maybe there's no need for a `useSwrSuspense` hook at all, you could just include a "suspense handle" in every call to `useSwr`. ```js function App() { // Regular useSWR() calls,...

I tested this with and earlier version which had this issue, and can confirm that it now works as expected for me (macos, GLFW, Roboto font).

Isn't method injection in handlers a bit unnecessary? Their only public interface is the handle() method, so method injection will only be available there anyway.

We had issues today using Caddy v2.6.1, where we'd sometimes get an old wildcard certificate on our production websites. Restarting caddy seems to have temporarily fixed the issue. We only...

@mholt I have enabled debug mode, but I guess we'll have to wait until the certificate expires again in order to reproduce the issue. Or do you have any suggestion...

I have upgraded Caddy to v2.6.4 using xcaddy and Go 1.20.2, will report back. Or do I have to build using `master` with xcaddy?

The problem only happened to us after a whole cycle of certificate generation/expiration (3 months) without ever restarting Caddy. We're on `v2.6.4` and not `master`, but we will upgrade when...

Great! Any ETA for a stable release with this patch?