Commit c21ea460 authored by isstuev's avatar isstuev

remove outdated text

parent 5b7be02f
...@@ -17,7 +17,6 @@ import useTxsSort from './useTxsSort'; ...@@ -17,7 +17,6 @@ import useTxsSort from './useTxsSort';
type Props = { type Props = {
queryName: QueryKeys.txsPending | QueryKeys.txsValidate | QueryKeys.blockTxs; queryName: QueryKeys.txsPending | QueryKeys.txsValidate | QueryKeys.blockTxs;
showDescription?: boolean;
stateFilter?: TTxsFilters['filter']; stateFilter?: TTxsFilters['filter'];
apiPath: string; apiPath: string;
showBlockInfo?: boolean; showBlockInfo?: boolean;
...@@ -25,7 +24,6 @@ type Props = { ...@@ -25,7 +24,6 @@ type Props = {
const TxsContent = ({ const TxsContent = ({
queryName, queryName,
showDescription,
stateFilter, stateFilter,
apiPath, apiPath,
showBlockInfo = true, showBlockInfo = true,
...@@ -81,7 +79,6 @@ const TxsContent = ({ ...@@ -81,7 +79,6 @@ const TxsContent = ({
return ( return (
<> <>
{ showDescription && <Box mb={{ base: 6, lg: 12 }}>Only the first 10,000 elements are displayed</Box> }
<TxsHeader mt={ -6 } sorting={ sorting } setSorting={ setSortByValue } paginationProps={ pagination } showPagination={ !isPaginatorHidden }/> <TxsHeader mt={ -6 } sorting={ sorting } setSorting={ setSortByValue } paginationProps={ pagination } showPagination={ !isPaginatorHidden }/>
{ content } { content }
</> </>
......
...@@ -13,7 +13,6 @@ const TxsTab = ({ tab }: Props) => { ...@@ -13,7 +13,6 @@ const TxsTab = ({ tab }: Props) => {
return ( return (
<TxsContent <TxsContent
queryName={ QueryKeys.txsValidate } queryName={ QueryKeys.txsValidate }
showDescription
stateFilter="validated" stateFilter="validated"
apiPath="/node-api/transactions" apiPath="/node-api/transactions"
/> />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment