Fix lint errors

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2022-01-18 09:08:26 +04:00
parent e21482362b
commit 32aac7dd9d
14 changed files with 68 additions and 70 deletions
+10 -14
View File
@@ -51,21 +51,17 @@ export default function VweKouteAchte({anTeks, niVideyo, niOdyo}) {
const [ouve, meteOuve] = useState(false)
const {kouteyAchtey, lyen} = anTeks
const kouteyAchteyActions = kouteyAchtey.map(({boutik, url}) => {
return {
icon: kouteyAchteyIcons[boutik],
name: boutik,
link: url
}
})
const kouteyAchteyActions = kouteyAchtey.map(({boutik, url}) => ({
icon: kouteyAchteyIcons[boutik],
name: boutik,
link: url
}))
const vweyActions = lyen.map(({url, sit}) => {
return {
icon: vweyIcons[sit],
name: sit,
link: url
}
})
const vweyActions = lyen.map(({url, sit}) => ({
icon: vweyIcons[sit],
name: sit,
link: url
}))
const handleOpen = () => {
meteOuve(true)