We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7c5c733 + 3880ffd commit fa7d65dCopy full SHA for fa7d65d
1 file changed
src/modules/Contacts/ui/Contacts.tsx
@@ -26,7 +26,8 @@ export function Contacts({ contacts }: Props) {
26
const isCompactCard = numberOfColumns === 3 && !device.isTablet;
27
28
return (
29
- <div className={styles.contacts}>
+ // biome-ignore lint/correctness/useUniqueElementIds: <Contacts is rendered once. It's safe to have a static id>
30
+ <div id="contacts" className={styles.contacts}>
31
<h2 className={styles.title}>
32
<FormattedMessage locale={locale} for={translations.contacts.title} />
33
</h2>
0 commit comments