fix: closes #191

This commit is contained in:
Hossein Mehrabi 2023-09-11 06:59:09 +03:30
parent 7244814962
commit acef648c33
No known key found for this signature in database
GPG Key ID: 45C04964191AFAA1
1 changed files with 2 additions and 2 deletions

View File

@ -247,7 +247,7 @@ const SearchBox = (props: SearchBoxProps) => {
</Filters>
{busy ? (
<Typography variant={'subtitle2'}>Searching...</Typography>
) : resultsNumber ? (
) : (
<Results>
<Typography variant={'subtitle2'}>
{resultsNumber === 0
@ -282,7 +282,7 @@ const SearchBox = (props: SearchBoxProps) => {
/>
</>
</Results>
) : null}
)}
</Container>
)
}