Skip to content

Commit

Permalink
Merge branch 'bitfoundation:develop' into 7761-dotnet9-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi authored Oct 19, 2024
2 parents babe45f + 40bb569 commit f38c1f4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ private async Task HandleOnOverlayClick(MouseEventArgs e)

private async Task HandleOnCloseClick(MouseEventArgs e)
{
_ = OnClose.InvokeAsync(e);
await OnClose.InvokeAsync(e);

await DismissDialog(e);
}
Expand All @@ -272,7 +272,7 @@ private async Task HandleOnCancelClick(MouseEventArgs e)
_tcs?.SetResult(Result);
_tcs = null;

_ = OnCancel.InvokeAsync(e);
await OnCancel.InvokeAsync(e);

await DismissDialog(e);
}
Expand All @@ -284,7 +284,7 @@ private async Task HandleOnOkClick(MouseEventArgs e)
_tcs?.SetResult(Result);
_tcs = null;

_ = OnOk.InvokeAsync(e);
await OnOk.InvokeAsync(e);

await DismissDialog(e);
}
Expand Down

0 comments on commit f38c1f4

Please sign in to comment.