diff --git a/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift b/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift index ade88c42a..0fb5d0dde 100644 --- a/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift +++ b/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift @@ -261,13 +261,14 @@ public struct HomeFeedView: View { conditionalInnerBody .toolbar { ToolbarItem { - Button( - action: { print("Profile") }, + NavigationLink( + destination: { EmptyView() }, label: { Image.profileTab.padding() } ) } } } + .accentColor(.appGrayTextContrast) } else { conditionalInnerBody }