From e4a02dea91556775190b42afcbd3703779126a36 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 8 Jan 2023 20:03:06 -0800 Subject: [PATCH] No reason to use the Image component here --- web/components/ui/Logo/Logo.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/components/ui/Logo/Logo.tsx b/web/components/ui/Logo/Logo.tsx index 5b590145d..520c4b56b 100644 --- a/web/components/ui/Logo/Logo.tsx +++ b/web/components/ui/Logo/Logo.tsx @@ -1,4 +1,3 @@ -import { Image } from 'antd'; import { FC } from 'react'; import styles from './Logo.module.scss'; @@ -9,7 +8,7 @@ export type LogoProps = { export const Logo: FC = ({ src }) => (
- Logo + Logo
);