Skip to content

Commit

Permalink
fix: missing component on guest upsell no comment ask
Browse files Browse the repository at this point in the history
  • Loading branch information
eddieferrer committed Sep 19, 2023
1 parent 43f76fc commit 44844ca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/Checkout/GuestUpsell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
</template>

<script>
import GuestAccountCreation from '@/components/Forms/GuestAccountCreation';
export default {
name: 'GuestUpsell',
Expand All @@ -20,6 +21,9 @@ export default {
default: () => [],
},
},
components: {
GuestAccountCreation,
},
computed: {
borrowerName() {
return this.loans.length === 1 ? this.loans[0].name : 'the borrowers you support';
Expand Down

0 comments on commit 44844ca

Please sign in to comment.