fix: wrong props

This commit is contained in:
원더 2021-01-25 14:25:25 +09:00
parent 28d4fc116a
commit 71b6b849b3
2 changed files with 0 additions and 2 deletions

View File

@ -20,6 +20,5 @@ export default Owner
interface OwnerProps { interface OwnerProps {
id: string id: string
tag: string tag: string
avatarHash: string
username: string username: string
} }

View File

@ -131,7 +131,6 @@ const Bots: NextPage<BotsProps> = ({ data, date }) => {
key={el.id} key={el.id}
id={el.id} id={el.id}
tag={el.tag} tag={el.tag}
avatarHash={el.avatar}
username={el.username} username={el.username}
/> />
))} ))}