Skip to content

Commit

Permalink
Merge pull request #172 from AstraProtocol/dev
Browse files Browse the repository at this point in the history
build: merge dev to prod
  • Loading branch information
viennguyen2-tiki committed Aug 10, 2023
2 parents 2b35226 + 4f2be82 commit 547058c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pages/block/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ const BlockDetailPage: React.FC<NextPage> = _ => {
<Pagination
total={pagination.total}
currentPage={pagination.page}
limit={pagination.limit}
disabled={false}
onChange={changePage}
noted="(Only the first 50,000 results are displayed)"
Expand Down Expand Up @@ -92,6 +93,7 @@ const BlockDetailPage: React.FC<NextPage> = _ => {
<Pagination
total={pagination.total}
currentPage={pagination.page}
limit={pagination.limit}
disabled={false}
onChange={changePage}
noted="(Only the first 50,000 results are displayed)"
Expand Down
4 changes: 3 additions & 1 deletion pages/tx/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import RowTitle from 'components/Typography/RowTitle'
import { isEmpty } from 'lodash'
import { NextPage } from 'next'
import React, { useEffect, useState } from 'react'
import useTransaction from 'views/transactions/hook/useTransaction'
import TransactionRow from 'views/transactions/TransactionRow'
import useTransaction from 'views/transactions/hook/useTransaction'
import Layout from '../../components/Layout'

const BlockDetailPage: React.FC<NextPage> = _ => {
Expand Down Expand Up @@ -44,6 +44,7 @@ const BlockDetailPage: React.FC<NextPage> = _ => {
<Pagination
total={pagination.total}
currentPage={pagination.page}
limit={pagination.limit}
disabled={false}
onChange={changePage}
noted="(Only the first 50,000 results are displayed)"
Expand Down Expand Up @@ -97,6 +98,7 @@ const BlockDetailPage: React.FC<NextPage> = _ => {
<Pagination
total={pagination.total}
currentPage={pagination.page}
limit={pagination.limit}
disabled={false}
onChange={changePage}
noted="(Only the first 50,000 results are displayed)"
Expand Down
2 changes: 2 additions & 0 deletions views/block/tabs/BlockTransactionTab/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const BlockTransactionTab = ({ blockHeight }: Props) => {
<div>
<Pagination
total={pagination.total * pagination.limit}
limit={pagination.limit}
currentPage={pagination.page}
onChange={changePage}
/>
Expand Down Expand Up @@ -61,6 +62,7 @@ const BlockTransactionTab = ({ blockHeight }: Props) => {
<Pagination
total={pagination.total * pagination.limit}
currentPage={pagination.page}
limit={pagination.limit}
onChange={changePage}
/>
</div>
Expand Down

0 comments on commit 547058c

Please sign in to comment.