From 17842893306410f878eed66af5e807870e61cc49 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 21 Feb 2022 19:34:01 +0100 Subject: refactor: replace script tags with next/script (#10) * refactor: replace script tags with next/script Since next.js v12.1.0 some warnings was displayed because I was using some script tags. * build(deps): bump next-themes to v0.1.1 --- src/components/Breadcrumb/Breadcrumb.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/components/Breadcrumb/Breadcrumb.tsx') diff --git a/src/components/Breadcrumb/Breadcrumb.tsx b/src/components/Breadcrumb/Breadcrumb.tsx index 914a175..92350c0 100644 --- a/src/components/Breadcrumb/Breadcrumb.tsx +++ b/src/components/Breadcrumb/Breadcrumb.tsx @@ -1,7 +1,7 @@ import { settings } from '@utils/config'; -import Head from 'next/head'; import Link from 'next/link'; import { useRouter } from 'next/router'; +import Script from 'next/script'; import { useIntl } from 'react-intl'; import { BreadcrumbList, WithContext } from 'schema-dts'; import styles from './Breadcrumb.module.scss'; @@ -125,12 +125,11 @@ const Breadcrumb = ({ pageTitle }: { pageTitle: string }) => { return ( <> - - - +