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 5b12625e3f
commit 47ba602b02
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export function Login() {
setLoading(true) setLoading(true)
try { try {
const { data, error: authError } = await authClient.signIn.email({ const { error: authError } = await authClient.signIn.email({
email, email,
password, password,
}) })
+1 -1
View File
@@ -28,7 +28,7 @@ export function Register() {
setLoading(true) setLoading(true)
try { try {
const { data, error: authError } = await authClient.signUp.email({ const { error: authError } = await authClient.signUp.email({
name, name,
email, email,
password, password,