/// GoRoute has a navigation issue where pop() will throw an error
/// Apply right before the pop() to fix it.
/// https://github.com/flutter/flutter/issues/160696#issuecomment-3297016874
/// Can also be used to facilitate dual operations, like pop immediatly followed by push
Future<void> asyncHackToFixNavIssue() async {
  await Future<void>.delayed(const Duration(milliseconds: 10));
}