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