Skip to content

Commit

Permalink
Merge pull request #4970 from kiva/guest_account_creation_fix
Browse files Browse the repository at this point in the history
fix: missing component on guest upsell no comment ask
  • Loading branch information
eddieferrer authored Sep 19, 2023
2 parents d92f014 + 44844ca commit 40e4fc8
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 40e4fc8

Please sign in to comment.