Fixes infinite loop

fix/allow-self-event-editing
zomars 2022-05-17 10:52:45 -06:00
parent 1c4d2fae56
commit a0296b8ccb
1 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,8 @@ const PaymentPage: FC<PaymentPageProps> = (props) => {
embedIframeWidth = e.detail.data.iframeWidth as number;
});
}
}, [date, isEmbed]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isEmbed]);
const eventName = props.booking.title;