Swift cleanup: "init (" -> "init("

Signed-off-by: Bryan Montz <bryanmontz@me.com>
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
Bryan Montz
2023-07-16 08:00:50 -05:00
committed by William Casarin
parent 16c86c1d1c
commit 0c627ae0a0
10 changed files with 11 additions and 11 deletions

View File

@@ -68,7 +68,7 @@ struct BannerImageView: View {
@State var banner: String?
init (pubkey: String, profiles: Profiles, disable_animation: Bool, banner: String? = nil) {
init(pubkey: String, profiles: Profiles, disable_animation: Bool, banner: String? = nil) {
self.pubkey = pubkey
self.profiles = profiles
self._banner = State(initialValue: banner)