fix logo src

This commit is contained in:
NlightN22 2024-03-14 18:19:49 +07:00
parent b52ea6ff37
commit 39f38081ed
2 changed files with 2 additions and 3 deletions

View File

@ -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 (
<Image

View File

@ -9,7 +9,6 @@ interface FloatingLabelInputProps extends TextInputProps {
onChangeValue?: (key: string, value: string) => void
}
export const FloatingLabelInput: React.FC<FloatingLabelInputProps> = ({
value: propVal,
onChangeValue,