Skip to content

Commit

Permalink
fix: some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tien Nam Dao committed Dec 30, 2022
1 parent 8f393a5 commit 34eb959
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion views/accounts/tabs/AddressTransactionTab/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const AddressTransactionTab = ({ address }: Props) => {
<div>
{/* Select Component */}
<Pagination
total={pagination.total_page}
total={pagination.total_record}
currentPage={pagination.current_page}
disabled={false}
limit={pagination.limit}
Expand Down
2 changes: 1 addition & 1 deletion views/tokens/tabs/TokenHolderTab/style.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
backdrop-filter: blur(42px);
display: flex;
align-items: center;
width: fit-content;
// width: fit-content;
.indexCenter {
display: flex;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion views/tokens/tabs/TokenTransactionTab/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const TokenTransactionTab = ({ token, tokenData }: Props) => {
return (
<div>
<Row style={{ justifyContent: 'space-between' }} classes="padding-xl">
<span className="text text-xl">Transactions</span>
<span className="text text-xl">Token Transfers</span>
<div>
{/* Select Component */}
<PaginationLite currentPage={currentPage} hasNext={hasNextPage} onChange={onPagingChange} />
Expand Down

0 comments on commit 34eb959

Please sign in to comment.