Skip to content

Commit

Permalink
fix: Hyperlink to homepage not use React Link
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Jun 22, 2024
1 parent 203a634 commit 09efe99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web-check-live/components/Form/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Nav = (props: { children?: ReactNode}) => {
<Header as="header">
<Heading color={colors.primary} size="large">
<img width="64" src="/web-check.png" alt="Web Check Icon" />
<Link to="/">Web Check</Link>
<a href="/" target="_self">Web Check</a>
</Heading>
{props.children && props.children}
</Header>
Expand Down

0 comments on commit 09efe99

Please sign in to comment.