Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MRVDH committed Aug 21, 2023
1 parent 6817cc2 commit b9be21d
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
Box,
Breadcrumbs,
Button,
Card,
ContentHeader,
Grid,
Heading,
Expand All @@ -21,6 +20,7 @@ import {
mainContentClass,
} from './styles.css';

import DrawerToolbar from '@/components/Common/DrawerToolbar';
import { Network } from '@/constants/kadena';
import Routes from '@/constants/routes';
import { useToolbar } from '@/context/layout-context';
Expand All @@ -32,7 +32,6 @@ import Debug from 'debug';
import { useRouter } from 'next/router';
import useTranslation from 'next-translate/useTranslation';
import React, { FC, useEffect, useRef, useState } from 'react';
import DrawerToolbar from '@/components/Common/DrawerToolbar';

const CheckTransactions: FC = () => {
const debug = Debug(
Expand Down Expand Up @@ -274,7 +273,7 @@ const CheckTransactions: FC = () => {
return (
<Table.Tr
key={index}
onClick={(_) => handleOpenTransactionDetails(result)}
onClick={() => handleOpenTransactionDetails(result)}
>
<Table.Td>
{new Date(result.blockTime).toLocaleString()}
Expand Down Expand Up @@ -316,7 +315,7 @@ const CheckTransactions: FC = () => {
return (
<Table.Tr
key={index}
onClick={(_) => handleOpenTransactionDetails(result)}
onClick={() => handleOpenTransactionDetails(result)}
>
<Table.Td>
{new Date(result.blockTime).toLocaleString()}
Expand Down

1 comment on commit b9be21d

@vercel
Copy link

@vercel vercel bot commented on b9be21d Aug 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tools – ./packages/apps/tools

kadena-js-transfer.vercel.app
tools-kadena-js.vercel.app
tools-git-main-kadena-js.vercel.app
tools.kadena.io

Please sign in to comment.