From 1994a317e9f2f7c3319be09872ca3f38250b1ba0 Mon Sep 17 00:00:00 2001 From: George Adams Date: Tue, 3 Oct 2023 22:05:22 +0100 Subject: [PATCH] fix SSRProvider warning on build --- src/components/Layout/index.tsx | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx index e5f828b19..2e52eacaa 100644 --- a/src/components/Layout/index.tsx +++ b/src/components/Layout/index.tsx @@ -1,29 +1,26 @@ import * as React from 'react' import PropTypes from 'prop-types' import { Slice } from 'gatsby' -import SSRProvider from 'react-bootstrap/SSRProvider' import './layout.scss' const Layout = ({ children }) => { return ( - -
- - -
- {children} -
- -
-
+
+ + +
+ {children} +
+ +
) }