Skip to content

Commit

Permalink
fix translation
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinunger committed Dec 12, 2023
1 parent 614fa55 commit 3100946
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ export class BookingConfirmationComponent implements OnInit {
this.bookings = response;
if (this.bookings.length === 0) {
this.justDeletedBookings = true;
this.titleText = this.translocoService.translate('bookingConfirmation.titleConfirm');
} else {
this.titleText = this.translocoService.translate('bookingConfirmation.titleDelete');
} else {
this.titleText = this.translocoService.translate('bookingConfirmation.titleConfirm');
}
});

Expand Down

0 comments on commit 3100946

Please sign in to comment.