Skip to content

Commit

Permalink
fix: update lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Tien Nam Dao committed Oct 10, 2022
1 parent 6c3ad42 commit f9e46aa
Show file tree
Hide file tree
Showing 5 changed files with 823 additions and 836 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@
"@commitlint/config-conventional": "^17.1.0",
"@svgr/webpack": "^6.3.1",
"@types/lodash": "^4.14.185",
"@types/node": "17.0.14",
"@types/node": "^18.8.3",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"eslint": "^8.23.1",
"eslint-config-next": "^12.3.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"typescript": "4.5.5"
"typescript": "^4.8.4"
}
}
1 change: 0 additions & 1 deletion tsconfig.tsbuildinfo

This file was deleted.

4 changes: 3 additions & 1 deletion views/tokens/TokenRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ import { LinkMaker } from 'utils/helper'
import styles from './style.module.scss'

type Props = {
key: string
index: number
token: Token
}

export default function TokenRow({ index, token }: Props) {
export default function TokenRow({ key, index, token }: Props) {
return (
<div
key={key}
className={clsx(
styles.rowBrief,
styles.tokenRow,
Expand Down
Empty file removed yarn-error.log
Empty file.
Loading

0 comments on commit f9e46aa

Please sign in to comment.