diff options
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index 7ba906d..f247370 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -124,7 +124,7 @@ struct PostGridView: View { // swiftlint:disable:this type_body_length ) #endif .searchSuggestions { - if settings.searchSuggestionsMode != .disabled { + if settings.searchSuggestionsMode != .disabled && isSearchablePresented { SearchSuggestionsView( items: searchSuggestionsItems(), searchText: $manager.searchText, |