From 2aaa408712bceed161077d69ed7c0388618b577a Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sat, 7 Feb 2026 21:29:00 -0500 Subject: [PATCH] fix: Fixes user not automatically being logged in upon creation. --- Sources/AuthClient/Interface.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/AuthClient/Interface.swift b/Sources/AuthClient/Interface.swift index 7c90812..86be123 100644 --- a/Sources/AuthClient/Interface.swift +++ b/Sources/AuthClient/Interface.swift @@ -38,6 +38,7 @@ extension AuthClient: TestDependencyKey { .init(email: createForm.email, password: createForm.password) ) request.auth.login(user) + request.session.authenticate(user) request.logger.debug("LOGGED IN: \(user.id)") return user },