diff --git a/Mlem/App/Views/Root/Tabs/Feeds/Feed Posts/HeadlinePostView.swift b/Mlem/App/Views/Root/Tabs/Feeds/Feed Posts/HeadlinePostView.swift index 4726b73be..2d4a53bb7 100644 --- a/Mlem/App/Views/Root/Tabs/Feeds/Feed Posts/HeadlinePostView.swift +++ b/Mlem/App/Views/Root/Tabs/Feeds/Feed Posts/HeadlinePostView.swift @@ -78,7 +78,7 @@ struct HeadlinePostView: View { HeadlinePostBodyView(post: post, requireConsistentHeight: requireConsistentHeight) - if alwaysShowCreator, communityContext == nil { + if alwaysShowCreator, communityContext == nil, topNavigationLink != .creator { personLink } diff --git a/Mlem/App/Views/Root/Tabs/Feeds/Feed Posts/LargePostView.swift b/Mlem/App/Views/Root/Tabs/Feeds/Feed Posts/LargePostView.swift index cf4144c6e..82d833e42 100644 --- a/Mlem/App/Views/Root/Tabs/Feeds/Feed Posts/LargePostView.swift +++ b/Mlem/App/Views/Root/Tabs/Feeds/Feed Posts/LargePostView.swift @@ -86,7 +86,7 @@ struct LargePostView: View { LargePostBodyView(post: post, isPostPage: isPostPage, shouldBlur: shouldBlur) - if (alwaysShowCreator && communityContext == nil) || isPostPage { + if (alwaysShowCreator && communityContext == nil && topNavigationLink != .creator) || isPostPage { personLink }