Skip to content

Commit

Permalink
close toast notifications fix (#14573)
Browse files Browse the repository at this point in the history
- simple typo fix
  • Loading branch information
dnenov authored Nov 7, 2023
1 parent 33acd1b commit b28faaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private void DropDownInstallButton_OnClick(object sender, RoutedEventArgs e)
private void CloseToastButton_OnClick(object sender, RoutedEventArgs e)
{
var PkgSearchVM = this.DataContext as PackageManagerSearchViewModel;
if (PkgSearchVM != null) { return; }
if (PkgSearchVM == null) { return; }

Button button = sender as Button;

Expand Down

0 comments on commit b28faaa

Please sign in to comment.