diff options
Diffstat (limited to 'src/components/Form')
-rw-r--r-- | src/components/Form/Items/RegisterItemForm.tsx | 3 | ||||
-rw-r--r-- | src/components/Form/People/RegisterPersonForm.tsx | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/components/Form/Items/RegisterItemForm.tsx b/src/components/Form/Items/RegisterItemForm.tsx index 7e9f67b..4089084 100644 --- a/src/components/Form/Items/RegisterItemForm.tsx +++ b/src/components/Form/Items/RegisterItemForm.tsx @@ -6,9 +6,6 @@ * Copyright (c) 2021 Vidhu Kant Sharma */ -// TODO: Code isn't tested properly -// I'd be surprised if it < 10 bugs - import React, { useState, Dispatch, SetStateAction } from "react"; import "./../Form.scss"; import { NewItem } from "./../../../interfaces" diff --git a/src/components/Form/People/RegisterPersonForm.tsx b/src/components/Form/People/RegisterPersonForm.tsx index 3922975..dedc45a 100644 --- a/src/components/Form/People/RegisterPersonForm.tsx +++ b/src/components/Form/People/RegisterPersonForm.tsx @@ -8,7 +8,7 @@ import React, { useState } from "react"; import "./../Form.scss"; -import { Person, Address } from "./../../../interfaces" +import { Person } from "./../../../interfaces" import axios from "axios"; interface props { |