chore: fix some issues with theme [skip e2e]

This commit is contained in:
Aman Harwara
2024-04-10 23:13:16 +05:30
parent 17458b61d1
commit 852ddc677d
3 changed files with 8 additions and 4 deletions

View File

@@ -114,8 +114,10 @@ export class GetFeatureStatusUseCase {
}
private isFreeFeature(featureId: NativeFeatureIdentifier) {
return [NativeFeatureIdentifier.TYPES.DarkTheme, NativeFeatureIdentifier.TYPES.PlainEditor].includes(
featureId.value,
)
return [
NativeFeatureIdentifier.TYPES.DarkTheme,
NativeFeatureIdentifier.TYPES.PlainEditor,
NativeFeatureIdentifier.TYPES.ProtonTheme,
].includes(featureId.value)
}
}