aboutsummaryrefslogtreecommitdiff
path: root/src/components/Form/People/RegisterPersonForm.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Form/People/RegisterPersonForm.tsx')
-rw-r--r--src/components/Form/People/RegisterPersonForm.tsx8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/components/Form/People/RegisterPersonForm.tsx b/src/components/Form/People/RegisterPersonForm.tsx
index 66de169..9e3b155 100644
--- a/src/components/Form/People/RegisterPersonForm.tsx
+++ b/src/components/Form/People/RegisterPersonForm.tsx
@@ -39,13 +39,7 @@ const RegisterPersonForm: React.FC<props> = (props) => {
// TODO: show confirmation before being invisible
// TODO: Implement override protection
- axios.post(
- `/api/people/register/`
- + `?name=${newClient.Name}`
- + `&phone=${newClient.Phone}`
- + `&email=${newClient.Email}`
- + `&address=${newClient.Address}`
- )
+ axios.post("/api/people/register", newClient)
.then((res) => {
console.log(res);
props.updatePeopleList();