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); }