diff --git a/src/components/UI/Header.tsx b/src/components/UI/Header.tsx index b8bc168946..78bd77f3be 100644 --- a/src/components/UI/Header.tsx +++ b/src/components/UI/Header.tsx @@ -9,12 +9,7 @@ export const Header: FC = () => { const { colorMode, toggleColorMode } = useColorMode(); const isDark = colorMode === 'dark'; return ( - + { > - - go-ethereum - + go-ethereum @@ -108,12 +101,12 @@ export const Header: FC = () => { borderColor='primary' onClick={toggleColorMode} > - {isDark ? : } + {isDark ? : } {/* HAMBURGER MENU */} - + diff --git a/src/components/UI/downloads/DownloadsHero.tsx b/src/components/UI/downloads/DownloadsHero.tsx index 487dea11c1..1ca47587be 100644 --- a/src/components/UI/downloads/DownloadsHero.tsx +++ b/src/components/UI/downloads/DownloadsHero.tsx @@ -2,7 +2,7 @@ import { Box, Button, Link, Stack, HStack, Text } from '@chakra-ui/react'; import { FC } from 'react'; import NextLink from 'next/link'; -import { GopherDownloads } from '../svgs' +import { GopherDownloads } from '../svgs'; import { DOWNLOAD_HEADER_BUTTONS } from '../../../constants'; @@ -33,7 +33,7 @@ export const DownloadsHero: FC = ({ return ( - + @@ -58,7 +58,7 @@ export const DownloadsHero: FC = ({ {Object.keys(DOWNLOAD_HEADER_BUTTONS).map((key: string) => { - const { name, buildURL, Svg, ariaLabel } = DOWNLOAD_HEADER_BUTTONS[key]; + const { name, buildURL, Svg, ariaLabel } = DOWNLOAD_HEADER_BUTTONS[key]; return (