Skip to content

Commit b772e92

Browse files
authored
Merge pull request annulusgames#21 from AnnulusGames/fix-navigationsheet
Fix: NavigationSheet impl
2 parents 65ebab3 + d4aba30 commit b772e92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/NavStack/Assets/NavStack/Runtime/NavigationSheet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ public UniTask RemoveAllAsync(CancellationToken cancellationToken = default)
5454

5555
public UniTask RemoveAsync(IPage page, CancellationToken cancellationToken = default)
5656
{
57-
return RemoveAsync(page, cancellationToken);
57+
return core.RemoveAsync(page, cancellationToken);
5858
}
5959

6060
public UniTask ShowAsync(int index, NavigationContext context, CancellationToken cancellationToken = default)
6161
{
62-
return ShowAsync(index, context, cancellationToken);
62+
return core.ShowAsync(index, context, cancellationToken);
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)