From 711c54c77bb9415321c896d196647b655ff9d5ae Mon Sep 17 00:00:00 2001 From: Pedro Oliveira Date: Thu, 7 Sep 2023 11:35:00 +0100 Subject: [PATCH] Remove Starknet Summit Popup (#1324) --- .gitignore | 1 + workspaces/website/src/components/Layout/PageLayout.tsx | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b5c30f4e1d..fd1f2a4c7c 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ storybook-static __* _data/_dynamic .eslintcache +.tool-versions # debug npm-debug.log* diff --git a/workspaces/website/src/components/Layout/PageLayout.tsx b/workspaces/website/src/components/Layout/PageLayout.tsx index 7e807026fd..9130a626ec 100644 --- a/workspaces/website/src/components/Layout/PageLayout.tsx +++ b/workspaces/website/src/components/Layout/PageLayout.tsx @@ -3,7 +3,7 @@ import { useState, useEffect } from "react"; import { useLocalStorage } from "react-use"; import { SectionHeader } from "@ui/SectionHeader/SectionHeader"; import { Text } from "@ui/Typography/Text"; -import { SummitPromo } from "./SummitPromo"; +// import { SummitPromo } from "./SummitPromo"; import React from "react"; type Props = { @@ -90,7 +90,7 @@ export const PageLayout = (props: Props) => { )} - + {/* */} ); };