We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
contacts
1 parent 7c5c733 commit 3880ffdCopy full SHA for 3880ffd
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