docs: updating function call parameters (#1052)

This commit is contained in:
tt
2024-12-28 11:32:00 +03:00
committed by GitHub
parent baf53d7226
commit 909d4946c8
+4 -2
View File
@@ -117,8 +117,10 @@ import { auth } from "@/lib/auth"
const signIn = async () => {
await auth.api.signInEmail({
email: "user@email.com",
password: "password",
body: {
email: "user@email.com",
password: "password",
}
})
}
```