diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/SectionWithRightAlignedEditButton.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/SectionWithRightAlignedEditButton.swift index 3863034e..7c46b4c4 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/SectionWithRightAlignedEditButton.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/SectionWithRightAlignedEditButton.swift @@ -3,12 +3,12 @@ import SwiftUI struct SectionWithRightAlignedEditButton: View { - private let sectionTitle: String + private let sectionTitle: LocalizedStringKey private let content: Content - init(sectionTitle: String, @ViewBuilder content: () -> Content) { + init(sectionTitle: LocalizedStringKey, @ViewBuilder content: () -> Content) { self.sectionTitle = sectionTitle self.content = content() }