diff --git a/src/view/com/search/SearchResults.tsx b/src/view/com/search/SearchResults.tsx index 802f9e5a11..4bf46515ca 100644 --- a/src/view/com/search/SearchResults.tsx +++ b/src/view/com/search/SearchResults.tsx @@ -42,14 +42,20 @@ export const SearchResults = observer(({model}: {model: SearchUIModel}) => { const PostResults = observer(({model}: {model: SearchUIModel}) => { const pal = usePalette('default') if (model.isPostsLoading) { - return + return ( + + + + ) } if (model.postUris.length === 0) { return ( - - No posts found for "{model.query}" - + + + No posts found for "{model.query}" + + ) } @@ -68,14 +74,20 @@ const PostResults = observer(({model}: {model: SearchUIModel}) => { const Profiles = observer(({model}: {model: SearchUIModel}) => { const pal = usePalette('default') if (model.isProfilesLoading) { - return + return ( + + + + ) } if (model.profiles.length === 0) { return ( - - No users found for "{model.query}" - + + + No users found for "{model.query}" + + ) }