Skip to content

Commit

Permalink
fix(seo-homepage): fix typo in conditonal check from title to path
Browse files Browse the repository at this point in the history
  • Loading branch information
jerensl committed Jun 10, 2024
1 parent 082e2d5 commit bee4f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Seo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const HeadComponent: React.FC<IHeadComponent> = ({ title, path }) => {
<meta name="twitter:image" content={app.image} />
<link rel="icon" href="/favicon.ico" />

{title === 'about' && (
{path === '/about' && (
<Link
rel="canonical"
href="https://www.jerenslensun.com/"
Expand Down

0 comments on commit bee4f24

Please sign in to comment.