Fix alt switch theme images

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2022-01-22 15:46:59 +04:00
parent 874b12cae9
commit d303ec14af
+2 -2
View File
@@ -41,7 +41,7 @@ export default function SwitchTheme({switchFixed, mode, setMode}) {
<div className={switchFixed ? classes.switchFixed : classes.switch} > <div className={switchFixed ? classes.switchFixed : classes.switch} >
{mode === 'dark' ? ( {mode === 'dark' ? (
<Image <Image
alt='Logo #OKi' alt='Switch theme to light'
width={24} width={24}
height={24} height={24}
src={darkSwitch} src={darkSwitch}
@@ -50,7 +50,7 @@ export default function SwitchTheme({switchFixed, mode, setMode}) {
/> />
) : ( ) : (
<Image <Image
alt='Logo #OKi' alt='Switch theme to dark'
width={24} width={24}
height={24} height={24}
src={lightSwitch} src={lightSwitch}