From cb0df3ec4bed70ccab4c6dfe0ae8731ffd8bee8a Mon Sep 17 00:00:00 2001 From: Jean-Philippe Sirois Date: Mon, 11 May 2020 20:27:22 -0400 Subject: [PATCH] chore(deps): fix import for latest react-helmet API --- src/components/SEO/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SEO/index.tsx b/src/components/SEO/index.tsx index 693031e..95aac58 100644 --- a/src/components/SEO/index.tsx +++ b/src/components/SEO/index.tsx @@ -1,6 +1,6 @@ import { graphql, useStaticQuery } from "gatsby" import React, { FC } from "react" -import Helmet from "react-helmet" +import { Helmet } from "react-helmet" interface ISEOProps { readonly description?: string