Skip to content

Commit

Permalink
the replace method doesn't need debouncing
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem committed Aug 10, 2024
1 parent 47c87be commit 42772da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void GoBackToPageAndReplace(string absolutePath, string replaceUri, objec
/// <param name="state"></param>
public void Replace(string relativeUri, object? state = null)
{
ExecuteIfTimeElapsed(() => StackReplace?.Invoke(this, new PageStackReplaceEventArgs(relativeUri, state)));
StackReplace?.Invoke(this, new PageStackReplaceEventArgs(relativeUri, state));
}

/// <summary>
Expand Down

0 comments on commit 42772da

Please sign in to comment.