1.1. Cookie testtest is set in the middleware.2.2. The // page is invoking a procedure using server caller.3.3. The ClientComponentClientComponent is invoking a procedure using react-query client.4.4. After the cookie is already set, on initial page load, the ClientComponentClientComponent invokes a procedure without passing the cookie with the request ({ testCookie: undefined }{ testCookie: undefined } in console output).5.5. At this point, the page is fully sent to the client ( GET / 200 in 151ms GET / 200 in 151ms)6.6. The procedure (for some reason) is then invoked the second time, the cookie is present ({ testCookie: { name: 'test', value: 'test' } }{ testCookie: { name: 'test', value: 'test' } })Join the Discord to ask follow-up questions and connect with the community