fix: back gesture issues on some devices

This commit is contained in:
Zane Schepke
2025-04-08 21:04:22 -04:00
parent 84de3a3991
commit 53480b0233
@@ -360,13 +360,6 @@ class MainActivity : AppCompatActivity() {
}
}
}
BackHandler {
if (navController.currentDestination?.route != Route.Main::class.qualifiedName) {
navController.popBackStack()
} else {
this@MainActivity.finish()
}
}
}
}
}