Skip to content

Commit

Permalink
fix: 기록화면 배경잘림 현상 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Seokki-Kwon committed Nov 12, 2024
1 parent 6567cb6 commit 5860b4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion HongikYeolgong2/Presentation/Record/RecordView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ struct RecordView: View {
minutes: studyTime.dayMinutes)
}
}
.modifier(IOSBackground())

.padding(.horizontal, 32.adjustToScreenWidth)
.padding(.top, 32.adjustToScreenHeight)
.padding(.bottom, 36.adjustToScreenHeight)
.modifier(IOSBackground())
.onAppear {
// 이용 시간 가져오기
studyTimeInteractor.getStudyTime(StudyTime: $studyTime)
Expand Down
2 changes: 1 addition & 1 deletion HongikYeolgong2/Presentation/Root/InitialView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ struct InitialView: View {
.onAppear { checkUserSession() }
}
}
.onAppear {
.onAppear {
resolveUserPermissions()
}
.onReceive(canRequestFirstPushPermissions) { _ in
Expand Down

0 comments on commit 5860b4a

Please sign in to comment.