diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 925683073..0d688e4d9 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -512,11 +512,13 @@ export default { false ); - this.dispatchStoreAction( - this.storeActions.SAVE_WAITLIST_REQUESTED, - this.waitListRequested, - false - ); + if (this.waitListRequested !== null && this.waitListRequested !== undefined) { + this.dispatchStoreAction( + this.storeActions.SAVE_WAITLIST_REQUESTED, + this.waitListRequested, + false + ); + } this.$router.navigateWithSaving(this.navigationScenarios.CLICKED_FORWARD, this.$route); }, diff --git a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue index c6d08069c..82e11ea41 100644 --- a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue +++ b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue @@ -627,8 +627,6 @@ export default { font-size: $h5-font-size; padding: 12px 16px; margin-bottom: -8px; - height: 78px; - width: 326px; .success-text { margin-left: 8px; strong {