File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
app/src/main/java/to/bitkit Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,8 @@ data class SettingsData(
8989 val isBiometricEnabled : Boolean = false ,
9090 val isPinOnIdleEnabled : Boolean = false ,
9191 val isPinForPaymentsEnabled : Boolean = false ,
92- val isDevModeEnabled : Boolean = Env .network != Network .BITCOIN ,
92+ @Suppress(" KotlinConstantConditions" , " SimplifyBooleanWithConstants" )
93+ val isDevModeEnabled : Boolean = !Env .isE2eTest && Env .network != Network .BITCOIN ,
9394 val showWidgets : Boolean = true ,
9495 val showWidgetTitles : Boolean = false ,
9596 val lastUsedTags : List <String > = emptyList(),
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ private fun BackupSettingsScreenContent(
124124 color = Colors .White64 ,
125125 )
126126 FillWidth ()
127- @Suppress(" SimplifyBooleanWithConstants " , " KotlinConstantConditions " )
127+ @Suppress(" KotlinConstantConditions " , " SimplifyBooleanWithConstants " )
128128 if (Env .isE2eTest && allSynced) {
129129 Icon (
130130 painter = painterResource(R .drawable.ic_check_circle),
You can’t perform that action at this time.
0 commit comments