Skip to content

Commit

Permalink
Update WebHelpers.cs (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
JJRoyale authored Aug 6, 2023
1 parent f3d4873 commit 65d7658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LaunchPass/WebHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static async void CheckForUpdates()
var updateState = await CheckForNewUpdates();
if (updateState.newUpdate)
{
var messageDialog = new MessageDialog($"New update avialable ({updateState.updateVersion})\nDo you want to download it now?");
var messageDialog = new MessageDialog($"New update available ({updateState.updateVersion})\nDo you want to download it now?");
messageDialog.Commands.Add(new UICommand("Download", new UICommandInvokedHandler(CommandInvokedHandler)));
messageDialog.Commands.Add(new UICommand("Later"));
await messageDialog.ShowAsync();
Expand Down

0 comments on commit 65d7658

Please sign in to comment.