diff --git a/frontend/src/RelayForm.tsx b/frontend/src/RelayForm.tsx index 581219c..1402fc3 100644 --- a/frontend/src/RelayForm.tsx +++ b/frontend/src/RelayForm.tsx @@ -8,7 +8,8 @@ type Assignment = { events: string[]; }; -const backend = axios.create({ baseURL: "http://backend:1308" }); +// TODO: this is prod link so maybe add config +const backend = axios.create({ baseURL: "https://api.relay.kehilush.com" }); const RelayForm: React.FC = () => { const [forms, setForms] = useState<{ [key: string]: React.ReactNode }>({});