Skip to content

Commit 9948f0e

Browse files
committed
Fix linting issues
1 parent be586b3 commit 9948f0e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

components/algorithmsList/algorithmCard/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ export default function AlgorithmCard({ algorithm }: { algorithm: Algorithm }) {
2020
const t = useTranslation();
2121

2222
return (
23-
<Card className={`AlgorithmCard__div elevateOnHover ${classes.stretchedCard}`}>
23+
<Card
24+
className={`AlgorithmCard__div elevateOnHover ${classes.stretchedCard}`}
25+
>
2426
<CardContent>
2527
<Breadcrumbs>
2628
{algorithm.categories.map((category) => (

components/jumbo/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ export default function Jumbo() {
5959
</div>
6060
<Typography className={classes.h2}>{t("welcomeTitle")}</Typography>
6161
<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+
/>
6367
</div>
6468
</div>
6569
</div>

components/searchBar/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default function SearchBar({
5353
// When input value is not null, reset error & empty state to `false`.
5454
// And also debounce the router push.
5555
setIsError(false);
56-
setIsEmpty(false);
56+
setIsEmpty(false);
5757
}
5858

5959
function handleSubmit(event?: FormEvent) {

0 commit comments

Comments
 (0)