Skip to content

Commit 836c4c2

Browse files
committed
Fix linting issues
1 parent dada416 commit 836c4c2

File tree

1 file changed

+2
-6
lines changed
  • components/algorithmsList/algorithmCard

1 file changed

+2
-6
lines changed

components/algorithmsList/algorithmCard/index.tsx

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

2222
return (
23-
<Card
24-
className={`elevateOnHover ${classes.stretchedCard}`}
25-
>
23+
<Card className={`elevateOnHover ${classes.stretchedCard}`}>
2624
<CardContent>
27-
<Breadcrumbs
28-
className={classes.breadcrumbs}
29-
>
25+
<Breadcrumbs className={classes.breadcrumbs}>
3026
{algorithm.categories.map((category) => (
3127
<Typography
3228
variant="h6"

0 commit comments

Comments
 (0)