From 5469a5c5c3fddcf611018c1de077de3499df787a Mon Sep 17 00:00:00 2001 From: Kalista Payne Date: Wed, 18 Sep 2024 15:07:36 -0500 Subject: [PATCH] fix(test): short circuit this. --- website/client/src/components/notifications.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/client/src/components/notifications.vue b/website/client/src/components/notifications.vue index 43dfeb901f..f967e6fca8 100644 --- a/website/client/src/components/notifications.vue +++ b/website/client/src/components/notifications.vue @@ -529,7 +529,7 @@ export default { // List of prompts for user on changes. // Sounds like we may need a refactor here, but it is clean for now - if (!this.user.flags.welcomed && !this.$route.name.includes('groupPlan')) { + if (!this.user.flags.welcomed && !this.$route?.name.includes('groupPlan')) { if (this.$store.state.avatarEditorOptions) { this.$store.state.avatarEditorOptions.editingUser = false; }