Skip to content

Commit 9cae263

Browse files
committed
Fix Grand Finals Round Suffix Issue
1 parent 4ed88e9 commit 9cae263

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

controller/src/model/Common/CommonLevel.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ export default abstract class CommonLevel {
1313
round: Round,
1414
) {
1515
this.bracket = bracket
16-
this.round = round
16+
17+
if (bracket && bracket.code !== "grandFinals") {
18+
this.round = round
19+
}
1720
}
1821
}

0 commit comments

Comments
 (0)