diff --git a/Moonlight/Features/Ticketing/UI/Components/TicketPopupMain.razor b/Moonlight/Features/Ticketing/UI/Components/TicketPopupMain.razor
index 32666ba8..28855899 100644
--- a/Moonlight/Features/Ticketing/UI/Components/TicketPopupMain.razor
+++ b/Moonlight/Features/Ticketing/UI/Components/TicketPopupMain.razor
@@ -1,36 +1,37 @@
@using Moonlight.Features.Ticketing.Entities
+
@if (ViewIndex == 0)
- {
-
- }
- else
- {
-
- @if (ViewIndex == 1)
- {
-
- }
- else if (ViewIndex == 2)
- {
-
- }
- else if (ViewIndex == 3)
- {
-
- }
-
- }
+ {
+
+ }
+ else
+ {
+
+ @if (ViewIndex == 1)
+ {
+
+ }
+ else if (ViewIndex == 2)
+ {
+
+ }
+ else if (ViewIndex == 3)
+ {
+
+ }
+
+ }
@code
{
private int ViewIndex = 0;
-
+
public Ticket CurrentTicket { get; private set; }
public async Task SetViewIndex(int index)