Skip to content

Commit

Permalink
updated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Bl20052005 committed Dec 14, 2023
1 parent 2cfeb37 commit 6a56b22
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
3 changes: 1 addition & 2 deletions apps/site/src/app/apply/sections/Form/AgeInformation.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import RequiredAsterisk from "../Components/RequiredAsterisk";
import SimpleRadio from "../Components/SimpleRadio";
import SimpleRadio from "@/app/apply/sections/Components/SimpleRadio";

const yesNoOptions = [
{
Expand Down
4 changes: 2 additions & 2 deletions apps/site/src/app/apply/sections/Form/BasicInformation.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import RadioSelect from "../Components/RadioSelect";
import TextInput from "../Components/TextInput";
import RadioSelect from "@/app/apply/sections/Components/RadioSelect";
import TextInput from "@/app/apply/sections/Components/TextInput";
import styles from "./Form.module.scss";

const pronouns = [
Expand Down
5 changes: 2 additions & 3 deletions apps/site/src/app/apply/sections/Form/ProfileInformation.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import RequiredAsterisk from "../Components/RequiredAsterisk";
import TextInput from "../Components/TextInput";
import Textfield from "../Components/Textfield";
import TextInput from "@/app/apply/sections/Components/TextInput";
import Textfield from "@/app/apply/sections/Components/Textfield";
import styles from "./Form.module.scss";

export default function ProfileInformation() {
Expand Down
6 changes: 3 additions & 3 deletions apps/site/src/app/apply/sections/Form/SchoolInformation.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styles from "./Form.module.scss";
import DropdownSelect from "../Components/DropdownSelect";
import TextInput from "../Components/TextInput";
import SimpleRadio from "../Components/SimpleRadio";
import DropdownSelect from "@/app/apply/sections/Components/DropdownSelect";
import TextInput from "@/app/apply/sections/Components/TextInput";
import SimpleRadio from "@/app/apply/sections/Components/SimpleRadio";

//these values can be edited if backend needs it later on

Expand Down

0 comments on commit 6a56b22

Please sign in to comment.