Skip to content

Commit fdf6ac7

Browse files
committed
Prettier fix
1 parent ccf1e95 commit fdf6ac7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/search.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ const SearchResults = ({results, getItemProps, highlightedIndex, isOpen}) => {
2222
}, [results, isOpen])
2323

2424
if (!results || results.length === 0) {
25-
return <Box sx={{fontSize: 2, px: 3, py: 3}} aria-live="assertive">No results</Box>
25+
return (
26+
<Box sx={{fontSize: 2, px: 3, py: 3}} aria-live="assertive">
27+
No results
28+
</Box>
29+
)
2630
}
2731

2832
return (

0 commit comments

Comments
 (0)