chore: linting

This commit is contained in:
apotdevin 2022-02-01 21:44:33 +01:00
parent 6937d15c0d
commit ca1c7292a4
No known key found for this signature in database
GPG key ID: 4403F1DFBE779457

View file

@ -3,7 +3,10 @@ import { ArrowDown, ArrowUp, Check, Circle } from 'react-feather';
import { toast } from 'react-toastify'; import { toast } from 'react-toastify';
import { BalanceBars } from '../../../components/balance'; import { BalanceBars } from '../../../components/balance';
import { ColorButton } from '../../../components/buttons/colorButton/ColorButton'; 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 { DarkSubTitle } from '../../../components/generic/Styled';
import { Link } from '../../../components/link/Link'; import { Link } from '../../../components/link/Link';
import { LoadingCard } from '../../../components/loading/LoadingCard'; import { LoadingCard } from '../../../components/loading/LoadingCard';
@ -228,7 +231,10 @@ export const ChannelTable = () => {
accessor: 'undercaseAlias', accessor: 'undercaseAlias',
Cell: ({ row }: any) => ( Cell: ({ row }: any) => (
<div style={{ whiteSpace: 'nowrap' }}> <div style={{ whiteSpace: 'nowrap' }}>
{getNodeLink(row.original.partner_public_key, row.original.alias)} {getNodeLink(
row.original.partner_public_key,
row.original.alias
)}
</div> </div>
), ),
}, },