Skip to content

Commit 3880ffd

Browse files
committed
[DEV-22962] Added contacts ID to contacts section
1 parent 7c5c733 commit 3880ffd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/modules/Contacts/ui/Contacts.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ export function Contacts({ contacts }: Props) {
2626
const isCompactCard = numberOfColumns === 3 && !device.isTablet;
2727

2828
return (
29-
<div className={styles.contacts}>
29+
// biome-ignore lint/correctness/useUniqueElementIds: <Contacts is rendered once. It's safe to have a static id>
30+
<div id="contacts" className={styles.contacts}>
3031
<h2 className={styles.title}>
3132
<FormattedMessage locale={locale} for={translations.contacts.title} />
3233
</h2>

0 commit comments

Comments
 (0)