마이페이지

- 당겨서 새로고침 제거
This commit is contained in:
Yu Sung
2025-04-08 13:23:56 +09:00
parent 51fcb8835e
commit 745f72db87

View File

@@ -59,12 +59,7 @@ struct MyPageView: View {
} }
} }
if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty { if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
RefreshableScrollView( ScrollView(.vertical, showsIndicators: false) {
refreshing: $viewModel.isLoading,
action: {
viewModel.getMypage()
}
) {
VStack(spacing: 0) { VStack(spacing: 0) {
if let data = viewModel.myPageResponse { if let data = viewModel.myPageResponse {
MyInfoCardView(data: data) { MyInfoCardView(data: data) {