diff --git a/src/components/Checkout/BasketItem.vue b/src/components/Checkout/BasketItem.vue
index 3b07ab4cf1..0d08d0ac53 100644
--- a/src/components/Checkout/BasketItem.vue
+++ b/src/components/Checkout/BasketItem.vue
@@ -38,10 +38,10 @@
/>
{
+ if (loan.loanId === this.loan.id) {
+ // Loan has a different team attribution, we should override the default
+ // Is team not in the users list, append it
+ if (!this.combinedTeams.some(team => team.id === loan.teamId)) {
+ this.appendedTeams.push({
+ id: loan.teamId,
+ name: loan.teamName
+ });
+ }
+ this.forceTeamId = loan.teamId;
+ }
+ });
+ }
+ }
};