Committed by
GitHub
Merge pull request #2192 from soulcure/master
get.to() function implementation miss return
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -519,7 +519,7 @@ extension GetNavigationExt on GetInterface { | @@ -519,7 +519,7 @@ extension GetNavigationExt on GetInterface { | ||
519 | bool rebuildStack = true, | 519 | bool rebuildStack = true, |
520 | PreventDuplicateHandlingMode preventDuplicateHandlingMode = | 520 | PreventDuplicateHandlingMode preventDuplicateHandlingMode = |
521 | PreventDuplicateHandlingMode.ReorderRoutes}) { | 521 | PreventDuplicateHandlingMode.ReorderRoutes}) { |
522 | - searchDelegate(id).to( | 522 | + return searchDelegate(id).to( |
523 | page, | 523 | page, |
524 | opaque: opaque, | 524 | opaque: opaque, |
525 | transition: transition, | 525 | transition: transition, |
-
Please register or login to post a comment