We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bbb9e6 commit c62ddb4Copy full SHA for c62ddb4
src/pages/showcase/_components/ShowcaseCard/index.tsx
@@ -1,3 +1,4 @@
1
+
2
import React from 'react';
3
import clsx from 'clsx';
4
import Image from '@theme/IdealImage';
@@ -55,10 +56,7 @@ function ShowcaseCardTag({tags}: {tags: TagType[]}) {
55
56
57
function ShowcaseCard({user}: {user: User}) {
58
return (
- <li
59
- key={user.title}
60
- className={clsx('card shadow--md', styles.card)}
61
- >
+ <li key={user.title} className="card shadow--md">
62
<div className={clsx('card__image', styles.showcaseCardImage)}>
63
<Image img={user.preview} alt={user.title} />
64
</div>
0 commit comments