Skip to content

Commit

Permalink
fix: clear data-title
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed May 9, 2021
1 parent 3d49919 commit 1867ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/components/src/LinkHeading/LinkHeading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const LinkHeading: FC<LinkHeadingProps> = ({
typeof c === 'string' ? c : Array.isArray(c) ? c.join(' ') : '',
)
.join(' ')
: `navigate to ${linkId}`);
: linkId);
return (
<Box id={linkId} variant="linkheading.container">
<Box variant="linkheading.inner">
Expand Down

0 comments on commit 1867ac2

Please sign in to comment.