diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift index 5acb17d8e..7a48e13eb 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift @@ -933,6 +933,16 @@ struct AnimatingCellHeight: AnimatableModifier { GridCard(item: item, isContextMenuOpen: $isContextMenuOpen, actionHandler: { _ in }) + .aspectRatio(1.0, contentMode: .fill) + .background( + Color.secondarySystemGroupedBackground + .onTapGesture { + if isContextMenuOpen { + isContextMenuOpen = false + } + } + ) + .cornerRadius(6) }.redacted(reason: .placeholder) } else { ForEach(viewModel.fetcher.items) { item in