diff --git a/src/Uno.UI/UI/Xaml/Documents/Hyperlink.cs b/src/Uno.UI/UI/Xaml/Documents/Hyperlink.cs index f9bbe9334be4..ad70de07c7f9 100644 --- a/src/Uno.UI/UI/Xaml/Documents/Hyperlink.cs +++ b/src/Uno.UI/UI/Xaml/Documents/Hyperlink.cs @@ -223,12 +223,10 @@ internal void OnClick() { Click?.Invoke(this, new HyperlinkClickEventArgs { OriginalSource = this }); -#if !__WASM__ // handled natively in WASM/Html if (NavigateUri != null) { _ = Launcher.LaunchUriAsync(NavigateUri); } -#endif } #endregion