Skip to content

Commit fa7d65d

Browse files
authored
Merge pull request #1441 from prezly/feature/dev-22962-add-section-header-id-for-anchor-link-functionality
[DEV-22962] Feature - Add `contacts` ID to contacts section
2 parents 7c5c733 + 3880ffd commit fa7d65d

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)