From d03a170262fa30f2168c7722b50fd56be7bca703 Mon Sep 17 00:00:00 2001 From: VINEETH ASOK KUMAR Date: Wed, 27 Sep 2023 18:41:11 +0200 Subject: [PATCH] Fix classic color in logo --- src/components/Logos/Logo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Logos/Logo.tsx b/src/components/Logos/Logo.tsx index a24e6a90..b09a1f31 100644 --- a/src/components/Logos/Logo.tsx +++ b/src/components/Logos/Logo.tsx @@ -14,7 +14,7 @@ export interface LogoProps extends SVGAttributes { const Logo = ({ name, theme, size, ...props }: LogoProps) => { const { name: themeName } = useTheme(); - const Component = ["light", "clasic"].includes(theme ?? themeName) + const Component = ["light", "classic"].includes(theme ?? themeName) ? LogosLight[name] : LogosDark[name];