Skip to content

Commit

Permalink
🐛 :: 시간 포맷
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Feb 26, 2023
1 parent 80a53e5 commit ac0a9b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ final class StudyRoomListViewModel: BaseViewModel {

var rangeString: String {
if let time = studyAvailableTime {
let text = "자습실 신청 시간은 " + time.startAt.toHourAndMinuteDSMDateString() +
" ~ " + time.endAt.toHourAndMinuteDSMDateString() + " 까지 입니다."
let text = "자습실 신청 시간은 " + time.startAt.toSmallDMSTimeString() +
" ~ " + time.endAt.toSmallDMSTimeString() + " 까지 입니다."
return text
} else {
return ""
Expand Down
2 changes: 1 addition & 1 deletion Projects/Features/MainTabFeature/Sources/MainTabView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ struct MainTabView: View {
}
}
}
.onAppear {
.onChange(of: tabbarHidden) { _ in
UITabBar.hideTabBar()
}
.environment(\.dmsSelectionTabbKey, $selection)
Expand Down

0 comments on commit ac0a9b1

Please sign in to comment.