mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-23 22:46:35 +01:00
chore: linting
This commit is contained in:
parent
6937d15c0d
commit
ca1c7292a4
1 changed files with 8 additions and 2 deletions
|
@ -3,7 +3,10 @@ import { ArrowDown, ArrowUp, Check, Circle } from 'react-feather';
|
|||
import { toast } from 'react-toastify';
|
||||
import { BalanceBars } from '../../../components/balance';
|
||||
import { ColorButton } from '../../../components/buttons/colorButton/ColorButton';
|
||||
import { getChannelLink, getNodeLink } from '../../../components/generic/helpers';
|
||||
import {
|
||||
getChannelLink,
|
||||
getNodeLink,
|
||||
} from '../../../components/generic/helpers';
|
||||
import { DarkSubTitle } from '../../../components/generic/Styled';
|
||||
import { Link } from '../../../components/link/Link';
|
||||
import { LoadingCard } from '../../../components/loading/LoadingCard';
|
||||
|
@ -228,7 +231,10 @@ export const ChannelTable = () => {
|
|||
accessor: 'undercaseAlias',
|
||||
Cell: ({ row }: any) => (
|
||||
<div style={{ whiteSpace: 'nowrap' }}>
|
||||
{getNodeLink(row.original.partner_public_key, row.original.alias)}
|
||||
{getNodeLink(
|
||||
row.original.partner_public_key,
|
||||
row.original.alias
|
||||
)}
|
||||
</div>
|
||||
),
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue