Skip to content

Commit

Permalink
fix(season): remove unnecessary optional chain expression
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsandoz committed Feb 9, 2024
1 parent 6736c45 commit 54d1f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/competitions/_competition/_season.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default Vue.extend({
}
this.rawCompetitionEdition = rawCompetitionEdition;
const tournamentResponse = await this.$leverade.getFullTournament(this.rawCompetitionEdition?.leverade_id!);
const tournamentResponse = await this.$leverade.getFullTournament(this.rawCompetitionEdition.leverade_id!);
this.leveradeTournamentData = tournamentResponse.data;
try {
Expand Down

0 comments on commit 54d1f2a

Please sign in to comment.