Skip to content

Commit

Permalink
Ignore lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
gabmontes committed Apr 2, 2024
1 parent 7ecd522 commit ca0a1cf
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions site/pages/dp-auctions/collections/[collectionId].js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import orderBy from 'lodash.orderby'
import { DateTime } from 'luxon'
import Link from 'next/link'
import orderBy from 'lodash.orderby'
import useSWR from 'swr'
import { useState } from 'react'
import useTranslation from 'next-translate/useTranslation'
import { useState } from 'react'
import useSWR from 'swr'

import Dropdown from '../../../components/Dropdown'
import Layout from '../../../components/Layout'
import SvgContainer from '../../../components/svg/SvgContainer'
import TokenAmount from '../../../components/TokenAmount'
import fetchJson from '../../../utils/fetch-json'
import ssDpa from '../../../utils/dp-auctions'
import { useUpdatingState } from '../../../hooks/useUpdatingState'
import ssDpa from '../../../utils/dp-auctions'
import fetchJson from '../../../utils/fetch-json'

const ETH_BLOCK_TIME = 13 // Average block time in Ethereum

Expand Down Expand Up @@ -147,6 +147,7 @@ const DPAuctionsCollectionSelector = function ({ count, collectionId }) {
{t('collection', { collectionId: i })}
</li>
) : (
// eslint-disable-next-line react/jsx-key
<Link href={`/dp-auctions/collections/${i}`} passHref>
<li key={i}>{t('collection', { collectionId: i })}</li>
</Link>
Expand Down

0 comments on commit ca0a1cf

Please sign in to comment.