Skip to content

Commit

Permalink
Fix nullability issue from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-hawker committed Nov 9, 2022
1 parent a9da722 commit 783d621
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public MarkdownTextBlock()
Loaded += this.MarkdownTextBlock_Loaded;
}

private void MarkdownTextBlock_Loaded(object sender, RoutedEventArgs e)
#nullable enable
private void MarkdownTextBlock_Loaded(object? sender, RoutedEventArgs e)
{
this.RegisterHtmlEventHandler("resize", HtmlElementResized);

Expand Down

0 comments on commit 783d621

Please sign in to comment.