Skip to content

Commit

Permalink
vitian
Browse files Browse the repository at this point in the history
  • Loading branch information
aditansh committed Mar 11, 2024
1 parent d06c6c0 commit 49c15b9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export default function CollegeDetailsForm({
}: {
setForm: React.Dispatch<React.SetStateAction<number>>;
}) {
const [isVitian, setIsVitian] = useState(false);
const [isVitian, setIsVitian] = useState(true);

return (
<div className="flex w-full flex-col">
<div className="flex flex-col items-center pt-5">
{/* <div className="flex flex-col items-center pt-5">
<p className="text-center text-base font-semibold text-primary">
Are You From Vellore Institute Of Technology, Vellore?
</p>
Expand All @@ -32,7 +32,7 @@ export default function CollegeDetailsForm({
? "VIT Vellore Students Only"
: "External Students and Participants Only"}
</p>
</div>
</div> */}
{isVitian ? (
<VitianForm setForm={setForm} />
) : (
Expand Down

0 comments on commit 49c15b9

Please sign in to comment.