diff --git a/ui/component/channelContent/view.jsx b/ui/component/channelContent/view.jsx index c3781d3b8..3a5543fdc 100644 --- a/ui/component/channelContent/view.jsx +++ b/ui/component/channelContent/view.jsx @@ -86,7 +86,7 @@ function ChannelContent(props: Props) { React.useEffect(() => { const timer = setTimeout(() => { - if (searchQuery === '' || !claimId) { + if (searchQuery.trim().length < 3 || !claimId) { // In order to display original search results, search results must be set to null. A query of '' should display original results. return setSearchResults(null); } else {