fix logo src
This commit is contained in:
parent
b52ea6ff37
commit
39f38081ed
@ -11,7 +11,7 @@ const Logo = ({
|
|||||||
...imageProps
|
...imageProps
|
||||||
}: LogoProps) => {
|
}: LogoProps) => {
|
||||||
const theme = useMantineTheme();
|
const theme = useMantineTheme();
|
||||||
const src = theme.colorScheme === 'dark' ? "logo-white.svg" : "logo.svg"
|
const src = theme.colorScheme === 'dark' ? "/logo-white.svg" : "/logo.svg"
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Image
|
<Image
|
||||||
|
|||||||
@ -9,7 +9,6 @@ interface FloatingLabelInputProps extends TextInputProps {
|
|||||||
onChangeValue?: (key: string, value: string) => void
|
onChangeValue?: (key: string, value: string) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export const FloatingLabelInput: React.FC<FloatingLabelInputProps> = ({
|
export const FloatingLabelInput: React.FC<FloatingLabelInputProps> = ({
|
||||||
value: propVal,
|
value: propVal,
|
||||||
onChangeValue,
|
onChangeValue,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user