fix: remove unused data destructuring in Login/Register

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-03-29 19:50:11 +00:00
parent 288ebf347d
commit 821635c0c8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export function Login() {
setLoading(true)
try {
const { data, error: authError } = await authClient.signIn.email({
const { error: authError } = await authClient.signIn.email({
email,
password,
})
+1 -1
View File
@@ -28,7 +28,7 @@ export function Register() {
setLoading(true)
try {
const { data, error: authError } = await authClient.signUp.email({
const { error: authError } = await authClient.signUp.email({
name,
email,
password,