We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65ebab3 + d4aba30 commit b772e92Copy full SHA for b772e92
1 file changed
src/NavStack/Assets/NavStack/Runtime/NavigationSheet.cs
@@ -54,12 +54,12 @@ public UniTask RemoveAllAsync(CancellationToken cancellationToken = default)
54
55
public UniTask RemoveAsync(IPage page, CancellationToken cancellationToken = default)
56
{
57
- return RemoveAsync(page, cancellationToken);
+ return core.RemoveAsync(page, cancellationToken);
58
}
59
60
public UniTask ShowAsync(int index, NavigationContext context, CancellationToken cancellationToken = default)
61
62
- return ShowAsync(index, context, cancellationToken);
+ return core.ShowAsync(index, context, cancellationToken);
63
64
65
0 commit comments