From 3be2da7ee7525e3b7b04df6e09e6a76c9bc545f4 Mon Sep 17 00:00:00 2001 From: Tony Giorgio <101225832+TonyGiorgio@users.noreply.github.com> Date: Sat, 11 Feb 2023 20:15:30 -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 edb4027..aea30f4 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(`http://127.0.0.1:8787/waitlist/${waitlistId}`).then(res => { + fetch(`https://waitlist.mutiny-waitlist.workers.dev/waitlist${waitlistId}`).then(res => { if (res.status === 200) { setWaitlisted(true); }