From 27b46b4252f5dfbb313237626b9807d8663a456a Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Fri, 22 Aug 2025 19:56:37 -0600 Subject: [PATCH] feat: Reorder and reword the 'meeting' registration option based on feedback. --- src/components/RegistrationNotice.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/RegistrationNotice.vue b/src/components/RegistrationNotice.vue index 19a8aa5d..7eff6373 100644 --- a/src/components/RegistrationNotice.vue +++ b/src/components/RegistrationNotice.vue @@ -111,14 +111,14 @@ export default class RegistrationNotice extends Vue { (this.$refs.choiceButtonDialog as ChoiceButtonDialog).open({ title: "How can you share your info?", text: "", - option1Text: "We are in a meeting together", - option2Text: "We are nearby with cameras", + option1Text: "We are nearby with cameras", + option2Text: "Someone created a meeting room", option3Text: "We will share some other way", onOption1: () => { - this.$router.push({ name: "onboard-meeting-list" }); + this.handleQRCodeClick(); }, onOption2: () => { - this.handleQRCodeClick(); + this.$router.push({ name: "onboard-meeting-list" }); }, onOption3: () => { this.$router.push({ name: "share-my-contact-info" });