booking hotfix

This commit is contained in:
Malte Delfs 2021-06-24 20:41:26 +02:00
parent 24f10e4f29
commit 9c3eea5257

View file

@ -101,7 +101,8 @@ export default function Book(props) {
} }
telemetry.withJitsu(jitsu => jitsu.track(telemetryEventTypes.bookingConfirmed, collectPageParameters())); telemetry.withJitsu(jitsu => jitsu.track(telemetryEventTypes.bookingConfirmed, collectPageParameters()));
const res = await fetch(
/*const res = await */fetch(
'/api/book/' + user, '/api/book/' + user,
{ {
body: JSON.stringify(payload), body: JSON.stringify(payload),
@ -111,8 +112,8 @@ export default function Book(props) {
method: 'POST' method: 'POST'
} }
); );
// TODO When the endpoint is fixed, change this to await the result again
if (res.ok) { //if (res.ok) {
let successUrl = `/success?date=${date}&type=${props.eventType.id}&user=${props.user.username}&reschedule=${!!rescheduleUid}&name=${payload.name}`; let successUrl = `/success?date=${date}&type=${props.eventType.id}&user=${props.user.username}&reschedule=${!!rescheduleUid}&name=${payload.name}`;
if (payload['location']) { if (payload['location']) {
if (payload['location'].includes('integration')) { if (payload['location'].includes('integration')) {
@ -124,10 +125,10 @@ export default function Book(props) {
} }
await router.push(successUrl); await router.push(successUrl);
} else { /*} else {
setLoading(false); setLoading(false);
setError(true); setError(true);
} }*/
} }
event.preventDefault(); event.preventDefault();