tods-competition-factory 2.2.46 → 2.2.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  function factoryVersion() {
6
- return '2.2.46';
6
+ return '2.2.47';
7
7
  }
8
8
 
9
9
  const SINGLES_MATCHUP = 'SINGLES';
@@ -32404,7 +32404,7 @@ function validateSetScore(set, matchUpFormat, isDecidingSet, allowIncomplete) {
32404
32404
  const loserScore = Math.min(side1Score, side2Score);
32405
32405
  const scoreDiff = winnerScore - loserScore;
32406
32406
  if (isTiebreakOnlyFormat) {
32407
- const NoAD = setFormat.tiebreakSet?.NoAD ?? false;
32407
+ const NoAD = set.NoAD ?? setFormat.tiebreakSet?.NoAD ?? false;
32408
32408
  return validateTiebreakOnlySet(winnerScore, loserScore, scoreDiff, tiebreakSetTo, allowIncomplete ?? false, NoAD);
32409
32409
  }
32410
32410
  const hasExplicitTiebreak = side1TiebreakScore !== undefined || side2TiebreakScore !== undefined;