diff --git a/DiscordChatExporter.Gui/ViewModels/Components/DashboardViewModel.cs b/DiscordChatExporter.Gui/ViewModels/Components/DashboardViewModel.cs
index 3e975205..76e4bef9 100644
--- a/DiscordChatExporter.Gui/ViewModels/Components/DashboardViewModel.cs
+++ b/DiscordChatExporter.Gui/ViewModels/Components/DashboardViewModel.cs
@@ -67,7 +67,7 @@ public class DashboardViewModel : PropertyChangedBase
Progress.Bind(o => o.Current, (_, _) => NotifyOfPropertyChange(() => IsProgressIndeterminate));
}
- public void OnViewFullyLoaded()
+ public void OnViewLoaded()
{
if (_settingsService.LastToken is not null)
{
diff --git a/DiscordChatExporter.Gui/Views/Components/DashboardView.xaml b/DiscordChatExporter.Gui/Views/Components/DashboardView.xaml
index 3fe8cc9d..cdf55959 100644
--- a/DiscordChatExporter.Gui/Views/Components/DashboardView.xaml
+++ b/DiscordChatExporter.Gui/Views/Components/DashboardView.xaml
@@ -13,6 +13,7 @@
xmlns:s="https://github.com/canton7/Stylet"
d:DataContext="{d:DesignInstance Type=components:DashboardViewModel}"
FocusManager.FocusedElement="{Binding ElementName=TokenValueTextBox}"
+ Loaded="{s:Action OnViewLoaded}"
mc:Ignorable="d">
@@ -26,7 +27,7 @@
-
+
@@ -356,4 +357,4 @@
-
+
\ No newline at end of file