diff --git a/MainWindow.xaml b/MainWindow.xaml
index 0f4f6ec..ed3e4bf 100644
--- a/MainWindow.xaml
+++ b/MainWindow.xaml
@@ -78,7 +78,6 @@
-
@@ -92,35 +91,8 @@
Width="400" HorizontalAlignment="Left"
VerticalAlignment="Center"/>
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/ViewModels/MainViewModel.cs b/ViewModels/MainViewModel.cs
index 82989cf..e84330a 100644
--- a/ViewModels/MainViewModel.cs
+++ b/ViewModels/MainViewModel.cs
@@ -37,7 +37,6 @@ public class MainViewModel : ViewModelBase
{
OnPropertyChanged(nameof(IsOffline));
OnPropertyChanged(nameof(IsLive));
- OnPropertyChanged(nameof(StatusDisplay));
OnPropertyChanged(nameof(PrimaryButtonText));
}
}
@@ -74,15 +73,6 @@ public class MainViewModel : ViewModelBase
}
}
- public string StatusDisplay => StreamStatus switch
- {
- StreamStatus.Offline => "OFFLINE",
- StreamStatus.Connecting => "CONNECTING...",
- StreamStatus.Streaming => "LIVE",
- StreamStatus.Error => "ERROR",
- _ => "UNKNOWN"
- };
-
///
/// Single, context-aware primary button. Follows the user's journey:
/// not connected → connect, connected+idle → go live, live → stop.