From 329cd867a7aa461de0457528168f0b6476fd6ccc Mon Sep 17 00:00:00 2001 From: "Han Zhang (from Dev Box)" Date: Tue, 24 Sep 2024 13:37:22 +0800 Subject: [PATCH] Stop showing error message for snapshot launch failure --- src/Calculator/Views/MainPage.xaml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Calculator/Views/MainPage.xaml.cs b/src/Calculator/Views/MainPage.xaml.cs index ab60ba7c..b3c36d76 100644 --- a/src/Calculator/Views/MainPage.xaml.cs +++ b/src/Calculator/Views/MainPage.xaml.cs @@ -178,7 +178,8 @@ namespace CalculatorApp else { TraceLogger.GetInstance().LogRecallError(Model.Mode, errorMessage); - await ShowSnapshotLaunchErrorAsync(); + // Stop showing error message for snapshot launch failure in the short term + // await ShowSnapshotLaunchErrorAsync(); } }); Model.Initialize(initialMode);