diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 925683073..65ce54a87 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); },