Skip to content

Commit

Permalink
⚡ refactor(InterativePop): change the delay before navigating to 1ms (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem authored Dec 27, 2023
1 parent 8ca78f7 commit b808826
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ protected override async Task OnAfterRenderAsync(bool firstRender)

public async Task HandleOnOutsideClickAsync()
{
// TODO: https://github.com/dotnet/aspnetcore/issues/52705
await Task.Delay(100);
await Task.Delay(1); // https://github.com/dotnet/aspnetcore/issues/52705
NavigationManager.NavigateWithQueryParameter(QueryName, (string?)null);
}

Expand Down

0 comments on commit b808826

Please sign in to comment.