Cleanup from comments

This commit is contained in:
David Langley
2021-08-12 16:57:19 +01:00
parent e7ed51c4df
commit 49eb6ae1ec
9 changed files with 28 additions and 14 deletions
@@ -23,11 +23,11 @@ import SwiftUI
@available(iOS 14.0, *)
struct VectorContentModifier: ViewModifier {
@StateObject var themeObservor = ThemeObserver.shared
@StateObject private var themeObserver = ThemeObserver.shared
func body(content: Content) -> some View {
content
.theme(themeObservor.theme)
.theme(themeObserver.theme)
}
}