Fix lint errors
This commit is contained in:
@@ -7,7 +7,7 @@ const MIZIK_API_USER = process.env.NEXT_PUBLIC_MIZIK_API_USER || 'user'
|
||||
const MIZIK_API_PASSWORD = process.env.NEXT_PUBLIC_MIZIK_API_PASSWORD || 'password'
|
||||
|
||||
const DinamikLekte = dynamic(
|
||||
() => import('./lekte'),
|
||||
() => import('./lekte'), // eslint-disable-line node/no-unsupported-features/es-syntax
|
||||
{ssr: false, loading: () => <CircularProgress sx={{color: '#29d'}} />}
|
||||
)
|
||||
|
||||
|
||||
+6
-8
@@ -6,9 +6,7 @@ import Divider from '@mui/material/Divider'
|
||||
import Chip from '@mui/material/Chip'
|
||||
import Grid from '@mui/material/Grid'
|
||||
import Button from '@mui/material/Button'
|
||||
import ArrowCircleDownIcon from '@mui/icons-material/ArrowCircleDown'
|
||||
import OpenInNewIcon from '@mui/icons-material/OpenInNew'
|
||||
import FormHelperText from '@mui/material/FormHelperText'
|
||||
import Tooltip from '@mui/material/Tooltip'
|
||||
|
||||
import HeadLayout from '../components/head-layout'
|
||||
@@ -74,14 +72,14 @@ export default function Home({errorCode, errorMessage, stats}) {
|
||||
<Container>
|
||||
<Grid container justifyContent='center' spacing={2}>
|
||||
<Grid item>
|
||||
<Tooltip title='asso.oki.re' placement='top' arrow>
|
||||
<Button variant='outlined' endIcon={<OpenInNewIcon />} onClick={() => window.open('https://asso.oki.re/public/members/new.php', '_blank')}>
|
||||
<strong>Adhésion</strong>
|
||||
</Button>
|
||||
</Tooltip>
|
||||
<Tooltip arrow title='asso.oki.re' placement='top'>
|
||||
<Button variant='outlined' endIcon={<OpenInNewIcon />} onClick={() => window.open('https://asso.oki.re/public/members/new.php', '_blank')}>
|
||||
<strong>Adhésion</strong>
|
||||
</Button>
|
||||
</Tooltip>
|
||||
</Grid>
|
||||
<Grid item>
|
||||
<Tooltip title='o-k-i.net' placement='top' arrow>
|
||||
<Tooltip arrow title='o-k-i.net' placement='top'>
|
||||
<Button variant='outlined' endIcon={<OpenInNewIcon />} onClick={() => window.open('https://o-k-i.net', '_blank')}>
|
||||
<strong>Fédiverse</strong>
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user