mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
style: deepscan fix
This commit is contained in:
parent
bae3e134f0
commit
54a22aaa32
@ -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'))
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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>
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user