Skip to content

Commit 2e0ec7c

Browse files
stephencelisp4checo
authored andcommitted
Run swift-format
(cherry picked from commit 09271d56f48bfdaa6c7c598b73eedc5b8f49a75d)
1 parent 349bd94 commit 2e0ec7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Examples/Integration/Integration/ForEachBindingTestCase.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ struct ForEachBindingTestCaseView: View {
3030

3131
var body: some View {
3232
WithViewStore(self.store, observe: { $0 }) { viewStore in
33-
VStack { // ⚠️ Must use VStack, not List.
33+
VStack { // ⚠️ Must use VStack, not List.
3434
ForEach(Array(viewStore.values.enumerated()), id: \.offset) { offset, value in
35-
HStack { // ⚠️ Must wrap in an HStack.
36-
TextField( // ⚠️ Must use a TextField.
35+
HStack { // ⚠️ Must wrap in an HStack.
36+
TextField( // ⚠️ Must use a TextField.
3737
"\(value)",
3838
text: viewStore.binding(
3939
get: { $0.values[offset] },

0 commit comments

Comments
 (0)