File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
algorithmsList/algorithmCard Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ export default function AlgorithmCard({ algorithm }: { algorithm: Algorithm }) {
20
20
const t = useTranslation ( ) ;
21
21
22
22
return (
23
- < Card className = { `AlgorithmCard__div elevateOnHover ${ classes . stretchedCard } ` } >
23
+ < Card
24
+ className = { `AlgorithmCard__div elevateOnHover ${ classes . stretchedCard } ` }
25
+ >
24
26
< CardContent >
25
27
< Breadcrumbs >
26
28
{ algorithm . categories . map ( ( category ) => (
Original file line number Diff line number Diff line change @@ -59,7 +59,11 @@ export default function Jumbo() {
59
59
</ div >
60
60
< Typography className = { classes . h2 } > { t ( "welcomeTitle" ) } </ Typography >
61
61
< div className = { classes . input } >
62
- < SearchBar query = { query } setQuery = { setQuery } className = "Jumbo_SearchBar__form" />
62
+ < SearchBar
63
+ query = { query }
64
+ setQuery = { setQuery }
65
+ className = "Jumbo_SearchBar__form"
66
+ />
63
67
</ div >
64
68
</ div >
65
69
</ div >
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default function SearchBar({
53
53
// When input value is not null, reset error & empty state to `false`.
54
54
// And also debounce the router push.
55
55
setIsError ( false ) ;
56
- setIsEmpty ( false ) ;
56
+ setIsEmpty ( false ) ;
57
57
}
58
58
59
59
function handleSubmit ( event ?: FormEvent ) {
You can’t perform that action at this time.
0 commit comments