Update following review.

This commit is contained in:
Doug
2022-01-28 14:16:06 +00:00
committed by Doug
parent 93e3c3637f
commit 8a4eb6751f
3 changed files with 30 additions and 36 deletions

View File

@@ -29,18 +29,18 @@ extension TemplateSimpleScreenPromptType: Identifiable, CaseIterable {
var title: String {
switch self {
case .regular:
return "Enable this feature?"
return VectorL10n.roomCreationMakePublicPromptTitle
case .upgrade:
return "Upgrade this feature?"
return VectorL10n.roomDetailsHistorySectionPromptTitle
}
}
var imageName: String {
var image: ImageAsset {
switch self {
case .regular:
return "person.circle"
return Asset.Images.appSymbol
case .upgrade:
return "arrowshape.zigzag.forward"
return Asset.Images.keyVerificationSuccessShield
}
}
}