File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Sources/ComponentsKit/Components Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,12 @@ public struct SUInputField<FocusValue: Hashable>: View {
9292 }
9393 . clipShape (
9494 RoundedRectangle (
95- cornerRadius: self . model. cornerRadius. value ( ) ,
95+ cornerRadius: self . model. cornerRadius. value ( )
9696 )
9797 )
9898 . overlay (
9999 RoundedRectangle (
100- cornerRadius: self . model. cornerRadius. value ( ) ,
100+ cornerRadius: self . model. cornerRadius. value ( )
101101 )
102102 . stroke (
103103 self . model. borderColor. color,
@@ -120,7 +120,7 @@ extension View {
120120 @ViewBuilder
121121 fileprivate func applyFocus< FocusValue: Hashable > (
122122 globalFocus: FocusState < FocusValue > . Binding ? ,
123- localFocus: FocusValue ,
123+ localFocus: FocusValue
124124 ) -> some View {
125125 if let globalFocus {
126126 self . focused ( globalFocus, equals: localFocus)
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ extension View {
158158 @ViewBuilder
159159 fileprivate func applyFocus< FocusValue: Hashable > (
160160 globalFocus: FocusState < FocusValue > . Binding ? ,
161- localFocus: FocusValue ,
161+ localFocus: FocusValue
162162 ) -> some View {
163163 if let globalFocus {
164164 self . focused ( globalFocus, equals: localFocus)
You can’t perform that action at this time.
0 commit comments