autoConnect: true for WebSockets. My app has an onboarding flow where users first visit the app (not logged in), then log in, then go through several steps.socket.data.user remains undefined on the server./login → Logs in via HTTP (success, cookie set)socket.data.user → undefined socket.data.user:"Wasp automatically injects the JWT into the connection, and if present/valid, the server adds a user to the socket."
autoConnect: true), it never gets the credentials.socket.data.user remain undefined for the lifetime of a socket that connected before authentication?socket.disconnect() + socket.connect())autoConnect: false and manually connect only after auth is confirmed?