Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rathoz committed Oct 22, 2024
1 parent b13fb7b commit 9c2d2ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/match2/wikis/mobilelegends/match_summary.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function CustomMatchSummary.createBody(match)
unpack(Array.map(match.games, FnUtil.curry(CustomMatchSummary._createGame, match.date))),
MatchSummaryWidgets.Mvp(match.extradata.mvp),
MatchSummaryWidgets.CharacterBanTable{bans = characterBansData, date = match.date},
MatchSummary.makeCastersRow(match.extradata.casters)
MatchSummary.makeCastersRow(match.extradata.casters):create()
)}
end

Expand Down
2 changes: 1 addition & 1 deletion components/match2/wikis/smite/match_summary.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function CustomMatchSummary.createBody(match)
showCountdown and MatchSummaryWidgets.Row{children = DisplayHelper.MatchCountdownBlock(match)} or nil,
unpack(Array.map(match.games, FnUtil.curry(CustomMatchSummary._createGame, match.date))),
MatchSummaryWidgets.CharacterBanTable{bans = characterBansData, date = match.date},
MatchSummary.makeCastersRow(match.extradata.casters)
MatchSummary.makeCastersRow(match.extradata.casters):create()
)}
end

Expand Down

0 comments on commit 9c2d2ab

Please sign in to comment.