Skip to content

Commit

Permalink
fix(groups): don't spawn Justin during Groups onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabe Jones committed Aug 30, 2024
1 parent c8205de commit a7ffdc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
:disabled="!newGroupIsReady"
@click="stripeGroup({ group: newGroup })"
>
{{ $t('next') }}
{{ $t('nextPaymentMethod') }}
</button>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion website/client/src/components/notifications.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
if (!this.user.flags.welcomed && !this.$route.name.includes('groupPlan')) {
if (this.$store.state.avatarEditorOptions) {
this.$store.state.avatarEditorOptions.editingUser = false;
}
Expand Down

0 comments on commit a7ffdc9

Please sign in to comment.