Skip to content

Commit 5d1e885

Browse files
committed
Removed unnecessary async from InAppNotificaiton
1 parent 267a2bd commit 5d1e885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.Uwp.UI.Controls.Core/InAppNotification/InAppNotification.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ private void UpdateContent(NotificationOptions notificationOptions)
278278
/// Handle the display of the notification based on the current StackMode
279279
/// </summary>
280280
/// <param name="notificationOptions">Information about the notification to display</param>
281-
private async void Show(NotificationOptions notificationOptions)
281+
private void Show(NotificationOptions notificationOptions)
282282
{
283283
var eventArgs = new InAppNotificationOpeningEventArgs();
284284
Opening?.Invoke(this, eventArgs);

0 commit comments

Comments
 (0)