I have a very simple ViewModifier but no matter what this error always happen -> Type 'MySSSAJHKDKJLHSADKJASDKJDS' does not conform to protocol 'ViewModifier'
struct MySSSAJHKDKJLHSADKJASDKJDS: ViewModifier {
func body(content: Content) -> some View {
return content.foregroundColor(.cyan)
.font(.subheadline)
}
}