docs: updating function call parameters (#1052)

This commit is contained in:
tt
2024-12-28 16:32:00 +08:00
committed by GitHub
parent baf53d7226
commit 909d4946c8

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",
}
})
}
```