Skip to content

Commit baa06b2

Browse files
remove commas from last params
1 parent b559dc8 commit baa06b2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Sources/ComponentsKit/Components/InputField/SUInputField.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

Sources/ComponentsKit/Components/TextInput/SUTextInput.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)