fix wrong port on frontend

This commit is contained in:
2024-07-13 22:19:20 +03:00
parent a01af94b10
commit e71b949883

View File

@ -8,7 +8,7 @@ type Assignment = {
events: string[];
};
const backend = axios.create({ baseURL: "http://backend:1307" });
const backend = axios.create({ baseURL: "http://backend:1308" });
const RelayForm: React.FC = () => {
const [forms, setForms] = useState<{ [key: string]: React.ReactNode }>({});