Skip to content

Commit

Permalink
chore(suite-native): connect FF in debug mode (#12432)
Browse files Browse the repository at this point in the history
  • Loading branch information
juriczech authored May 16, 2024
1 parent c37d129 commit 6c5dc5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suite-native/feature-flags/src/featureFlagsSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type FeatureFlagsRootState = {
};

export const featureFlagsInitialState: FeatureFlagsState = {
[FeatureFlag.IsDeviceConnectEnabled]: isAndroid(),
[FeatureFlag.IsDeviceConnectEnabled]: isAndroid() || isDebugEnv(),
[FeatureFlag.IsPassphraseEnabled]: isDebugEnv(),
[FeatureFlag.IsViewOnlyEnabled]: isDebugEnv(),
[FeatureFlag.IsSendEnabled]: isAndroid() && isDevelopOrDebugEnv(),
Expand Down

0 comments on commit 6c5dc5a

Please sign in to comment.