Skip to content

Commit 9b0d43f

Browse files
committed
rename: lint 규칙 준수를 위해 네임 변경
1 parent 60a801d commit 9b0d43f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Projects/Features/HomeFeature/Sources/Models/HomePresentationModel.swift

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ extension HomePresentationModel.Schedule {
9090
extension MyTripSummary {
9191
func toPresention() -> HomePresentationModel.Banner {
9292
let schedule: HomePresentationModel.Schedule
93-
if let s = self.tripSchedule {
93+
if let tripSchedule = self.tripSchedule {
9494
schedule = .init(
95-
id: s.id,
96-
day: s.day,
97-
placeName: s.placeName,
98-
thumbnailUrl: s.thumbnailUrl,
99-
transport: s.transport,
100-
estimatedDuration: s.estimatedDuration
95+
id: tripSchedule.id,
96+
day: tripSchedule.day,
97+
placeName: tripSchedule.placeName,
98+
thumbnailUrl: tripSchedule.thumbnailUrl,
99+
transport: tripSchedule.transport,
100+
estimatedDuration: tripSchedule.estimatedDuration
101101
)
102102
} else {
103103
schedule = .empty

0 commit comments

Comments
 (0)