fix: fix unapplied updates (#502)

This commit is contained in:
Byungchul Kim 2022-07-23 10:39:43 +09:00 committed by GitHub
parent a808cf1d4f
commit 8ea69fb4ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View File

@ -82,7 +82,7 @@ const ManageBotPage:NextPage<ManageBotProps> = ({ bot, user, csrfToken, theme })
{({ errors, touched, values, setFieldTouched, setFieldValue }) => (
<Form>
<div className='md:flex text-center md:text-left'>
<DiscordAvatar userID={bot.id} className='md:mx-1 mx-auto'/>
<DiscordAvatar userID={bot.id} className='md:mx-1 mx-auto rounded-full'/>
<div className='md:w-2/3 px-8 py-6'>
<h1 className='text-3xl font-bold'>{bot.name}#{bot.tag}</h1>
<h2>ID: {bot.id}</h2>

View File

@ -71,7 +71,7 @@ const VoteBot: NextPage<VoteBotProps> = ({ data, user, theme, csrfToken }) => {
</Link>
<Segment className='mb-16 py-8'>
<div className='text-center'>
<DiscordAvatar userID={data.id} className='mx-auto w-52 h-52 bg-white mb-4' />
<DiscordAvatar userID={data.id} className='mx-auto w-52 h-52 bg-white mb-4 rounded-full' />
<Tag text={<span><i className='fas fa-heart text-red-600' /> {data.votes}</span>} dark />
<h1 className='text-3xl font-bold mt-3'>{data.name}</h1>
<h4 className='text-md mt-1'>12 .</h4>

View File

@ -64,7 +64,7 @@ const ManageServerPage:NextPage<ManageServerProps> = ({ server, user, owners, cs
{({ errors, touched, values, setFieldTouched, setFieldValue }) => (
<Form>
<div className='md:flex text-center md:text-left'>
<ServerIcon id={server.id} className='md:mx-1 mx-auto'/>
<ServerIcon id={server.id} className='md:mx-1 mx-auto rounded-full'/>
<div className='md:w-2/3 px-8 py-6'>
<h1 className='text-3xl font-bold'>{server.name}</h1>
<h2>ID: {server.id}</h2>

View File

@ -71,7 +71,7 @@ const VoteServer: NextPage<VoteServerProps> = ({ data, user, theme, csrfToken })
</Link>
<Segment className='mb-16 py-8'>
<div className='text-center'>
<ServerIcon id={data.id} className='mx-auto w-52 h-52 bg-white mb-4' />
<ServerIcon id={data.id} className='mx-auto w-52 h-52 bg-white mb-4 rounded-full' />
<Tag text={<span><i className='fas fa-heart text-red-600' /> {data.votes}</span>} dark />
<h1 className='text-3xl font-bold mt-3'>{data.name}</h1>
<h4 className='text-md mt-1'>12 .</h4>