Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/wtfdivyansh/plura
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfdivyansh committed Nov 10, 2024
2 parents a7daa43 + e74014b commit 2981e42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/www/components/custom/signInComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function SignInComponent() {
},
});
const onSubmit = async (SignInData: z.infer<typeof formSchema>) => {
await authClient.signIn.email({
await authClient.signIn.email({
email: SignInData.email,
password: SignInData.password,
callbackURL: "/dashboard",
Expand Down
2 changes: 1 addition & 1 deletion apps/www/components/custom/signUpComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function SignUpComponent() {
},
});
const onSubmit = async (SignInData: z.infer<typeof formSchema>) => {
await authClient.signUp.email({
await authClient.signUp.email({
name: SignInData.name,
email: SignInData.email,
password: SignInData.password,
Expand Down

0 comments on commit 2981e42

Please sign in to comment.