summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-10-20 18:52:16 -0700
committerMichael Hunteman <michael@huntm.net>2024-10-20 18:52:16 -0700
commit5a65b3a653eb4a9ca62332fa65c8d352e6dc782f (patch)
tree6f2fabb06936a7290a2f5e94a1b3aaf4534bf87c /client
parent5c8f0ca091ff7f962260c75a0ffe4c99e7cdca3c (diff)
Use UUID
Diffstat (limited to 'client')
-rw-r--r--client/.env.development2
-rw-r--r--client/.env.test2
-rw-r--r--client/src/components/RsvpForm.tsx11
-rw-r--r--client/src/models.ts2
4 files changed, 4 insertions, 13 deletions
diff --git a/client/.env.development b/client/.env.development
index be2cee9..eab1509 100644
--- a/client/.env.development
+++ b/client/.env.development
@@ -1 +1 @@
-VITE_BASE_URL=http://192.168.1.18:8080/api/
+VITE_BASE_URL=http://192.168.1.11:8080/api/
diff --git a/client/.env.test b/client/.env.test
index be2cee9..eab1509 100644
--- a/client/.env.test
+++ b/client/.env.test
@@ -1 +1 @@
-VITE_BASE_URL=http://192.168.1.18:8080/api/
+VITE_BASE_URL=http://192.168.1.11:8080/api/
diff --git a/client/src/components/RsvpForm.tsx b/client/src/components/RsvpForm.tsx
index 2a3552f..53fefa4 100644
--- a/client/src/components/RsvpForm.tsx
+++ b/client/src/components/RsvpForm.tsx
@@ -34,16 +34,7 @@ function RsvpForm() {
watch,
formState: { errors },
} = useForm<Guest>({
- defaultValues: {
- id: guest.id,
- firstName: guest.firstName,
- lastName: guest.lastName,
- attendance: guest.attendance,
- email: guest.email,
- message: guest.message,
- partySize: guest.partySize,
- partyList: guest.partyList,
- },
+ defaultValues: guest,
});
const onSubmit = async (data: Guest) => {
diff --git a/client/src/models.ts b/client/src/models.ts
index 201a969..c0cff9e 100644
--- a/client/src/models.ts
+++ b/client/src/models.ts
@@ -1,5 +1,5 @@
export interface Guest {
- id?: number;
+ id?: string;
firstName: string;
lastName: string;
attendance?: string;