chore: revert

This commit is contained in:
원더 2021-01-29 19:57:47 +09:00
parent ec7b12f3fd
commit c9b3c41074

View File

@ -50,20 +50,20 @@ const Users: NextPage<UserProps> = ({ data }) => {
<span className='ml-0.5 text-gray-400 text-4xl font-semibold'>#{data.tag}</span>
<br />
<div className='badges flex'>
{checkPerm(data.perm, 'staff') ? (
{checkPerm(data.perm, 'staff') && (
<Tooltip text='한국 디스코드봇 리스트 스탭입니다.' direction='left'>
<div className='pr-5 text-koreanbots-blue text-2xl'>
<i className='fas fa-hammer' />
</div>
</Tooltip>
) : ''}
{checkPerm(data.perm, 'bughunter') ? (
)}
{checkPerm(data.perm, 'bughunter') && (
<Tooltip text='버그를 많이 제보해주신 분입니다.' direction='left'>
<div className='pr-5 text-green-500 text-2xl'>
<i className='fas fa-bug' />
</div>
</Tooltip>
) : ''}
)}
</div>
<br />
{data.github && (