Skip to content

Commit

Permalink
Tiny Wins: SEO: fix duplicated description tag (#2265)
Browse files Browse the repository at this point in the history
use next/head instead of HashiHead
  • Loading branch information
Mike Wickett authored Dec 19, 2023
1 parent c3c0e53 commit 26248af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/well-architected-framework/tutorial-view/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: MPL-2.0
*/

import HashiHead from '@hashicorp/react-head'
import Head from 'next/head'
import { Fragment } from 'react'
import InstruqtProvider from 'contexts/instruqt-lab'
import TutorialMeta from 'components/tutorial-meta'
Expand Down Expand Up @@ -51,9 +51,9 @@ export default function WellArchitectedFrameworkTutorialView({

return (
<>
<HashiHead>
<Head>
<link rel="canonical" href={canonicalUrl.toString()} key="canonical" />
</HashiHead>
</Head>
<InteractiveLabWrapper
key={slug}
{...(isInteractive && { labId: handsOnLab.id })}
Expand Down

1 comment on commit 26248af

@vercel
Copy link

@vercel vercel bot commented on 26248af Dec 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.