diff --git a/Profile/Profile/Presentation/Profile/UserProfile/UserProfileView.swift b/Profile/Profile/Presentation/Profile/UserProfile/UserProfileView.swift index da5a7f9dc..17fc43bae 100644 --- a/Profile/Profile/Presentation/Profile/UserProfile/UserProfileView.swift +++ b/Profile/Profile/Presentation/Profile/UserProfile/UserProfileView.swift @@ -19,6 +19,8 @@ public struct UserProfileView: View { public var body: some View { ZStack(alignment: .top) { + Theme.Colors.background + .ignoresSafeArea() // MARK: - Page Body RefreshableScrollViewCompat(action: { await viewModel.getUserProfile(withProgress: false) @@ -97,10 +99,6 @@ public struct UserProfileView: View { await viewModel.getUserProfile() } } - .background( - Theme.Colors.background - .ignoresSafeArea() - ) } }