From 8275ea4239883082cb8f3608865cd20f497a954b Mon Sep 17 00:00:00 2001 From: melnikga Date: Fri, 5 Jul 2024 17:06:15 +0400 Subject: [PATCH 1/4] Update EditorFooter.tsx --- components/Editor/EditorFooter.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/components/Editor/EditorFooter.tsx b/components/Editor/EditorFooter.tsx index ee53397..0e5b857 100644 --- a/components/Editor/EditorFooter.tsx +++ b/components/Editor/EditorFooter.tsx @@ -24,7 +24,7 @@ function EditorFooter({ withoutContent = false }) { : ' '} - {isFullScreen && !withoutContent && ( + {isFullScreen && (
Made with ❤️ by{' '} @@ -38,10 +38,15 @@ function EditorFooter({ withoutContent = false }) {
- - + {!withoutContent && ( + <> + + + + )} + - + {!withoutContent && }
)} From 44a054a8f6891d672110fd0572e425af4e39d549 Mon Sep 17 00:00:00 2001 From: melnikga Date: Fri, 5 Jul 2024 17:27:42 +0400 Subject: [PATCH 2/4] Update Header.tsx --- components/Editor/Header.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/components/Editor/Header.tsx b/components/Editor/Header.tsx index b8418c9..27b8635 100644 --- a/components/Editor/Header.tsx +++ b/components/Editor/Header.tsx @@ -55,17 +55,11 @@ const EditorHeader = ({ > {!anotherTitle && 'Cairo VM'}Playground - {anotherTitle && ( -
- Cairo compiler v2.6.3 -
- )} ))}
- {anotherTitle && } Date: Fri, 5 Jul 2024 17:54:14 +0400 Subject: [PATCH 4/4] Update Header.tsx --- components/Editor/Header.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/Editor/Header.tsx b/components/Editor/Header.tsx index eaba01e..2955cb4 100644 --- a/components/Editor/Header.tsx +++ b/components/Editor/Header.tsx @@ -4,8 +4,6 @@ import Image from 'next/image' import cairoLogo from 'public/cairo_logo.png' import Select, { OnChangeValue } from 'react-select' -import ToggleThreeColumnLayout from 'components/ToggleThreeColumnLayout' - import { CodeType } from '../../context/appUiContext' type Props = {