Skip to content

Commit f5e184f

Browse files
PM-11426: Disable email verification flag from being configured remotely (#876)
1 parent b2a3bba commit f5e184f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

BitwardenShared/Core/Platform/Models/Enum/FeatureFlag.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ enum FeatureFlag: String, Codable {
2828
/// Whether this feature can be enabled remotely.
2929
var isRemotelyConfigured: Bool {
3030
switch self {
31-
case .nativeCarouselFlow,
31+
case .emailVerification,
32+
.nativeCarouselFlow,
3233
.nativeCreateAccountFlow,
3334
.testLocalFeatureFlag:
3435
false
35-
case .emailVerification,
36-
.testRemoteFeatureFlag:
36+
case .testRemoteFeatureFlag:
3737
true
3838
}
3939
}

0 commit comments

Comments
 (0)