Skip to content

Commit

Permalink
Merge branch 'main' into prod
Browse files Browse the repository at this point in the history
  • Loading branch information
AtharvAgarwal20 committed Oct 4, 2024
2 parents 350641c + eeece1f commit 7bb4e50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ next-env.d.ts

# Million Lint
.million


# WebStorm
.idea/
4 changes: 2 additions & 2 deletions components/Registration/RegistrationForm/RegistrationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Controller, useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import * as z from "zod";
import gsap from "gsap";
import { Select, Space } from "antd";
import { Select } from "antd";
import type { SelectProps } from "antd";

import styles from "./registrationForm.module.scss";
Expand Down Expand Up @@ -271,7 +271,7 @@ const RegistrationForm: React.FC<registrationFormProps> = ({ userState }) => {
})
.catch((err) => {
console.log(err);
alert(err);
alert(err.response.data.message);
});
};

Expand Down

0 comments on commit 7bb4e50

Please sign in to comment.