From 81f8ca08b3d3357d8e0ff1e76d1baa2274f7430c Mon Sep 17 00:00:00 2001 From: Tony Giorgio <101225832+TonyGiorgio@users.noreply.github.com> Date: Sat, 11 Feb 2023 20:19:43 -0600 Subject: [PATCH] Update Join.tsx --- src/Join.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Join.tsx b/src/Join.tsx index aea30f4..90513ec 100644 --- a/src/Join.tsx +++ b/src/Join.tsx @@ -13,7 +13,7 @@ export default function Join() { // Fetch the waitlist status from the backend useEffect(() => { if (waitlistId) { - fetch(`https://waitlist.mutiny-waitlist.workers.dev/waitlist${waitlistId}`).then(res => { + fetch(`https://waitlist.mutiny-waitlist.workers.dev/waitlist/${waitlistId}`).then(res => { if (res.status === 200) { setWaitlisted(true); }