diff --git a/src/components/view/datatable/account-detail/account-detail.tsx b/src/components/view/datatable/account-detail/account-detail.tsx index 77889b9..e900b9e 100644 --- a/src/components/view/datatable/account-detail/account-detail.tsx +++ b/src/components/view/datatable/account-detail/account-detail.tsx @@ -41,18 +41,6 @@ interface Props { address: string; } -const TOOLTIP_TX_HASH = ( - <> - Transctions have been temporarily
- assigned with values in [height_order] -
- format, as the tx hashing function is -
- still under development on Gnoland. -
- -); - const TOOLTIP_TYPE = ( <> Hover on each value to
@@ -131,7 +119,6 @@ export const AccountDetailDatatable = ({address}: Props) => { height={data.height} /> )) - .tooltip(TOOLTIP_TX_HASH) .build(); }; diff --git a/src/components/view/datatable/block-detail/block-detail.tsx b/src/components/view/datatable/block-detail/block-detail.tsx index 3d51099..a18094b 100644 --- a/src/components/view/datatable/block-detail/block-detail.tsx +++ b/src/components/view/datatable/block-detail/block-detail.tsx @@ -41,18 +41,6 @@ interface Props { height: string | number; } -const TOOLTIP_TX_HASH = ( - <> - Transctions have been temporarily
- assigned with values in [height_order] -
- format, as the tx hashing function is -
- still under development on Gnoland. -
- -); - const TOOLTIP_TYPE = ( <> Hover on each value to
@@ -100,7 +88,6 @@ export const BlockDetailDatatable = ({height}: Props) => { .width(210) .colorName('blue') .renderOption((value, data) => ) - .tooltip(TOOLTIP_TX_HASH) .build(); }; diff --git a/src/components/view/datatable/realm-detail/realm-detail.tsx b/src/components/view/datatable/realm-detail/realm-detail.tsx index 18e10c6..e9c40e8 100644 --- a/src/components/view/datatable/realm-detail/realm-detail.tsx +++ b/src/components/view/datatable/realm-detail/realm-detail.tsx @@ -38,18 +38,6 @@ interface Props { pkgPath: string; } -const TOOLTIP_TX_HASH = ( - <> - Transctions have been temporarily
- assigned with values in [height_order] -
- format, as the tx hashing function is -
- still under development on Gnoland. -
- -); - const TOOLTIP_TYPE = ( <> Hover on each value to
@@ -98,7 +86,6 @@ export const RealmDetailDatatable = ({pkgPath}: Props) => { .width(210) .colorName('blue') .renderOption((value, data) => ) - .tooltip(TOOLTIP_TX_HASH) .build(); }; diff --git a/src/components/view/datatable/token-detail/token-detail.tsx b/src/components/view/datatable/token-detail/token-detail.tsx index 3f138fa..47e09a9 100644 --- a/src/components/view/datatable/token-detail/token-detail.tsx +++ b/src/components/view/datatable/token-detail/token-detail.tsx @@ -40,18 +40,6 @@ interface Props { path: string[] | any; } -const TOOLTIP_TX_HASH = ( - <> - Transctions have been temporarily
- assigned with values in [height_order] -
- format, as the tx hashing function is -
- still under development on Gnoland. -
- -); - const TOOLTIP_TYPE = ( <> Hover on each value to
@@ -99,7 +87,6 @@ export const TokenDetailDatatable = ({path}: Props) => { .width(210) .colorName('blue') .renderOption((value, data) => ) - .tooltip(TOOLTIP_TX_HASH) .build(); }; diff --git a/src/components/view/datatable/transaction/transaction.tsx b/src/components/view/datatable/transaction/transaction.tsx index ae41130..02cb9ec 100644 --- a/src/components/view/datatable/transaction/transaction.tsx +++ b/src/components/view/datatable/transaction/transaction.tsx @@ -2,7 +2,6 @@ import React, {useEffect, useState} from 'react'; import Datatable, {DatatableOption} from '@/components/ui/datatable'; -import Link from 'next/link'; import {DatatableItem} from '..'; import styled from 'styled-components'; import usePageQuery from '@/common/hooks/use-page-query'; @@ -14,21 +13,8 @@ import {ValueWithDenomType} from '@/types/data-type'; import theme from '@/styles/theme'; import {Button} from '@/components/ui/button'; import {eachMedia} from '@/common/hooks/use-media'; -import {scrollbarStyle} from '@/common/hooks/use-scroll-bar'; import {StatusKeyType} from '@/common/utils'; -const TOOLTIP_TX_HASH = ( - <> - Transctions have been temporarily
- assigned with values in [height_order] -
- format, as the tx hashing function is -
- still under development on Gnoland. -
- -); - const TOOLTIP_TYPE = ( <> Hover on each value to
@@ -128,7 +114,6 @@ export const TransactionDatatable = () => { height={data.height} /> )) - .tooltip(TOOLTIP_TX_HASH) .build(); };