fix: remove unused data destructuring in Login/Register
Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
+1
-1
@@ -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,
|
||||
})
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user