Merge pull request #309 from Malte-D/hotfix/booking-no-await

booking hotfix
pull/311/head
Malte Delfs 2021-06-24 20:42:06 +02:00 committed by GitHub
commit dada6a3a79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

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