diff --git a/api/kra/KRAClient.ts b/api/kra/KRAClient.ts index 58d0da8..78a2a3b 100644 --- a/api/kra/KRAClient.ts +++ b/api/kra/KRAClient.ts @@ -352,6 +352,7 @@ export const KRAFormation = ( for (const first of f) { for (const second of s) { for (const third of t) { + if (!(f == s || s == t || f == t)) { switch (type) { case TicketType.EXACTA: buys.push( @@ -373,6 +374,7 @@ export const KRAFormation = ( ); } } + } } } return buys;