Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Project/App/Sources/Feature/MyPage/MyPageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ struct MyPageView: View {
.padding(.horizontal, 20)
}
}
.clipShape(Rectangle())
.onAppear {
store.send(.onAppear)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import ComposableArchitecture

struct ReportView: View {
@Bindable var store: StoreOf<ReportReducer>
@State private var currentPage: Date = Date()
@State private var currentPage = Date()

private let dates = [
Calendar.current.date(byAdding: .day, value: 1, to: Date())!,
Expand All @@ -30,7 +30,7 @@ struct ReportView: View {

var body: some View {
ScrollView {
LargeNavigationTitleView(title: "통계")
LargeNavigationTitleView(title: "리포트")
.unredacted()

VStack(spacing: 0) {
Expand Down Expand Up @@ -76,6 +76,7 @@ struct ReportView: View {
.padding(.bottom, 20)
}
}
.clipShape(Rectangle())
.onAppear {
store.send(.onAppear)
}
Expand Down