We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5dd4dca + 59a18c3 commit c4efe36Copy full SHA for c4efe36
src/components/RecipientCard/RecipientCard.jsx
@@ -54,7 +54,9 @@ export default function RecipientCard({ Recipient }) {
54
onMouseMove={handleMove}
55
onTouchMove={handleMove}
56
>
57
- {backgroundColor === 'blue' && <div className={styles.triangle} />}
+ {!backgroundImageURL && backgroundColor === 'blue' && (
58
+ <div className={styles.triangle} />
59
+ )}
60
<h3
61
className={`${styles['card__h3']} ${backgroundImageURL ? styles.white : ''}`}
62
0 commit comments