Skip to content

Commit d46a885

Browse files
committed
code style
1 parent fac6124 commit d46a885

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

CodeEdit/Features/Welcome/Views/RecentProjectItem.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@ struct RecentProjectItem: View {
2727
.aspectRatio(contentMode: .fit)
2828
.frame(width: 32, height: 32)
2929
VStack(alignment: .leading) {
30-
Text(projectPath.components(separatedBy: "/").last ?? "").font(.system(size: 13))
30+
Text(projectPath.components(separatedBy: "/").last ?? "")
31+
.font(.system(size: 13))
3132
.lineLimit(1)
3233
Text(projectPath.abbreviatingWithTildeInPath())
3334
.font(.system(size: 11))
3435
.lineLimit(1)
3536
.truncationMode(.head)
36-
}.padding(.trailing, 15)
37+
}
38+
.padding(.trailing, 15)
3739
Spacer()
3840
}
3941
.contentShape(Rectangle())

0 commit comments

Comments
 (0)