Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
Fix Hyperlink import
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Tran authored and Andrew Tran committed Oct 9, 2023
1 parent 84b23f4 commit 3cddf3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/terra-clinical-header/src/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import classNames from 'classnames';
import classNamesBind from 'classnames/bind';

import HyperlinkButton from 'terra-hyperlink';
import Hyperlink from 'terra-hyperlink';
import ThemeContext from 'terra-theme-context';

import styles from './Header.module.scss';
Expand Down Expand Up @@ -108,7 +108,7 @@ const Header = ({
<div className={cx('title-container')}>
<HeaderElement id={id} className={cx('title')}>
{onTextClick ? (
<HyperlinkButton onClick={onTextClick} text={titleContent} />
<Hyperlink onClick={onTextClick} text={titleContent} />
) : (
titleContent
)}
Expand Down

0 comments on commit 3cddf3d

Please sign in to comment.