style: deepscan fix

This commit is contained in:
Junseo Park 2021-02-27 14:07:45 +09:00
parent bae3e134f0
commit 54a22aaa32
3 changed files with 4 additions and 7 deletions

View File

@ -1,6 +1,6 @@
import dynamic from 'next/dynamic'
import Link from 'next/link'
import { ReactNode, useState } from 'react'
import { ReactNode } from 'react'
import Container from './Container'
const SEO = dynamic(() => import('@components/SEO'))

View File

@ -13,14 +13,11 @@ import { Form, Formik } from 'formik'
import { DeveloperBotSchema } from '@utils/Yup'
const Button = dynamic(() => import('@components/Button'))
const Divider = dynamic(() => import('@components/Divider'))
const Input = dynamic(() => import('@components/Form/Input'))
const Container = dynamic(() => import('@components/Container'))
const DeveloperLayout = dynamic(() => import('@components/DeveloperLayout'))
const SEO = dynamic(() => import('@components/SEO'))
const DiscordAvatar = dynamic(() => import('@components/DiscordAvatar'))
const BotApplication: NextPage<BotApplicationProps> = ({ user, spec, bot }) => {
const BotApplication: NextPage<BotApplicationProps> = ({ spec, bot }) => {
const [ showToken, setShowToken ] = useState(false)
const [ tokenCopied, setTokenCopied ] = useCopyClipboard(spec?.token, {
successDuration: 1000

View File

@ -30,7 +30,7 @@ ${mainLicense}`} />
</Segment>
<h1 className='text-3xl font-bold mt-6'> </h1>
<p>
<div>
:<br/>
{
Object.keys(packageJson.dependencies).concat(Object.keys(packageJson.devDependencies)).map(el=> <span key={el}><a className='text-blue-500 hover:text-blue-400' href={`https://npmjs.org/package/${el}`}>{el}</a> </span>)
@ -44,7 +44,7 @@ ${mainLicense}`} />
</Segment>
</div>)
}
</p>
</div>
</Docs>
}