Skip to content

Commit

Permalink
fix: default 6-3 and 6-2 to 6-1 (#1144)
Browse files Browse the repository at this point in the history
* fix: default 6-3 and 6-2 to 6-1

* chore: rename align
  • Loading branch information
iBotPeaches authored Jan 31, 2024
1 parent 6ecd146 commit 600f1aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Livewire/CompetitivePage.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ public function render(): View
// Hack - 5-2 and 5-3 were pre-published, but not yet out.
// As of now they have the same CSR Key as 5-1, so we'll just use that.
$seasonKey = ($seasonKey === '5-2' || $seasonKey === '5-3') ? '5-1' : $seasonKey;

// Hack Part 2 - 6-3 and 6-2 were pre-published, but not yet out.
// As of now they have the same CSR Key as 6-1, so we'll just use that.
$seasonKey = ($seasonKey === '6-2' || $seasonKey === '6-3') ? '6-1' : $seasonKey;
}

return view('livewire.competitive-page', [
Expand Down

0 comments on commit 600f1aa

Please sign in to comment.