Skip to content

Commit d8b07f6

Browse files
committed
Use message box instead
1 parent 18290b8 commit d8b07f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Flow.Launcher/App.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public App()
4444
}
4545
catch (Exception e)
4646
{
47-
MessageBoxEx.Show($"Cannot load setting storage: {e}");
47+
MessageBox.Show($"Cannot load setting storage: {e}");
4848
}
4949

5050
// Configure the dependency injection container
@@ -68,7 +68,7 @@ public App()
6868
}
6969
catch (Exception e)
7070
{
71-
MessageBoxEx.Show($"Cannot configure dependency injection container: {e}");
71+
MessageBox.Show($"Cannot configure dependency injection container: {e}");
7272
}
7373

7474
// Initialize the public API and Settings first
@@ -79,7 +79,7 @@ public App()
7979
}
8080
catch (Exception e)
8181
{
82-
MessageBoxEx.Show($"Cannot initialize public API and settings: {e}");
82+
MessageBox.Show($"Cannot initialize public API and settings: {e}");
8383
}
8484
}
8585

0 commit comments

Comments
 (0)