Skip to content

Commit

Permalink
Fixed SwiftLint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
austincondiff committed Dec 16, 2023
1 parent 3ffdfd0 commit e185442
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ struct EditorPathBarView: View {
)
} else {
ForEach(fileItems, id: \.self) { fileItem in
EditorPathBarComponent(fileItem: fileItem, tappedOpenFile: tappedOpenFile, isLastItem: fileItems.last == fileItem)
EditorPathBarComponent(
fileItem: fileItem,
tappedOpenFile: tappedOpenFile,
isLastItem: fileItems.last == fileItem
)
}
}
}
Expand Down

0 comments on commit e185442

Please sign in to comment.