Skip to content

Commit 22538e2

Browse files
committed
Remove debug build check for navigation
The conditional check for BuildConfig.BUILD_TYPE == "debug" was removed, allowing navigation to AppProfileScreenDestination for all build types.
1 parent 08a740a commit 22538e2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/src/main/kotlin/com/dergoogler/mmrl/ui/screens/superuser/SuperUserList.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ fun ScaffoldScope.SuperUserList(
4949
key = { it.packageName + it.uid }
5050
) { app ->
5151
SuperUserItem(app) {
52-
if (BuildConfig.BUILD_TYPE == "debug") {
53-
navigator.navigate(AppProfileScreenDestination(app))
54-
}
52+
navigator.navigate(AppProfileScreenDestination(app))
5553
}
5654
}
5755
}

0 commit comments

Comments
 (0)