We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3275c62 commit 500d90bCopy full SHA for 500d90b
frontend/src/interfaces/stage_item_input.tsx
@@ -43,7 +43,7 @@ export function formatStageItemInput(
43
) {
44
if (stage_item_input == null) return null;
45
if ('team' in stage_item_input) return stage_item_input.team.name;
46
- else if (stage_item_input?.winner_from_stage_item_id != null) {
+ if (stage_item_input?.winner_from_stage_item_id != null) {
47
return formatStageItemInputTentative(stage_item_input, stageItemsLookup);
48
}
49
return null;
0 commit comments