diff --git a/ios/Platform/Platform/Features/Fitness/Views/MealSectionView.swift b/ios/Platform/Platform/Features/Fitness/Views/MealSectionView.swift index a9e96ab..a56c4f4 100644 --- a/ios/Platform/Platform/Features/Fitness/Views/MealSectionView.swift +++ b/ios/Platform/Platform/Features/Fitness/Views/MealSectionView.swift @@ -151,12 +151,9 @@ struct SwipeToDeleteRow: View { // Content row content() .offset(x: offset) - .background( - NavigationLink(destination: destination(), isActive: $showDetail) { - EmptyView() - } - .opacity(0) - ) + .navigationDestination(isPresented: $showDetail) { + destination() + } .onTapGesture { if !isSwiping { showDetail = true