diff --git a/src/shared/components/images/LogoImage.tsx b/src/shared/components/images/LogoImage.tsx index faa509a..2df4605 100644 --- a/src/shared/components/images/LogoImage.tsx +++ b/src/shared/components/images/LogoImage.tsx @@ -11,7 +11,7 @@ const Logo = ({ ...imageProps }: LogoProps) => { const theme = useMantineTheme(); - const src = theme.colorScheme === 'dark' ? "logo-white.svg" : "logo.svg" + const src = theme.colorScheme === 'dark' ? "/logo-white.svg" : "/logo.svg" return ( void } - export const FloatingLabelInput: React.FC = ({ value: propVal, onChangeValue, @@ -48,7 +47,7 @@ export const FloatingLabelInput: React.FC = ({ autoComplete="nope" data-floating={floating} labelProps={{ 'data-floating': floating }} - {...rest} + {...rest} /> ) }