Skip to content

Commit

Permalink
fix: class name typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mistakia committed Feb 20, 2024
1 parent 25b19d4 commit 52bbd26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ echarts.use([
GridComponent
])

export default function LedgerChartBlocks({ data, isLoading }) {
export default function LedgerChartAmounts({ data, isLoading }) {
const { t } = useTranslation()
const ranges = {
_1000000_count: '>1M',
Expand Down Expand Up @@ -97,7 +97,7 @@ export default function LedgerChartBlocks({ data, isLoading }) {
)
}

LedgerChartBlocks.propTypes = {
LedgerChartAmounts.propTypes = {
data: PropTypes.object,
isLoading: PropTypes.bool
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ echarts.use([
GridComponent
])

export default function LedgerChartBlocks({ data, isLoading }) {
export default function LedgerChartVolume({ data, isLoading }) {
const { t } = useTranslation()
const spanStyle =
'float:right;margin-left:20px;font-size:14px;color:#666;font-weight:900'
Expand Down Expand Up @@ -126,7 +126,7 @@ export default function LedgerChartBlocks({ data, isLoading }) {
)
}

LedgerChartBlocks.propTypes = {
LedgerChartVolume.propTypes = {
data: PropTypes.object,
isLoading: PropTypes.bool
}

0 comments on commit 52bbd26

Please sign in to comment.