diff --git a/packages/frontend/src/components/info/VoucherTimeLeft.tsx b/packages/frontend/src/components/info/VoucherTimeLeft.tsx index 927ee732..353a6f3f 100644 --- a/packages/frontend/src/components/info/VoucherTimeLeft.tsx +++ b/packages/frontend/src/components/info/VoucherTimeLeft.tsx @@ -6,7 +6,6 @@ import { formatDate } from '@/utils/formatters/formatDate' import { useVoucherRedeemDeadline } from '@/blockchain/hooks/useVoucherRedeemDeadline' import { useReadAuctionParams } from '@/blockchain/hooks/useReadAuctionParams' import { MediaQueries } from '@/styles/mediaQueries' -import Link from 'next/link' export const VoucherTimeLeft = () => { const { claimingEndTime } = useReadAuctionParams() @@ -24,7 +23,6 @@ export const VoucherTimeLeft = () => { {isRedeemingExpired ? 'Voucher redemption expired on ' : 'Voucher redemption ends: '} {formatDate(redeemTimestamp)} - {/*
We are currently experiencing issues and you are unable to claim your raffle ticket! We apologize for the inconvenience and are working on a fix. Follow our Twitter for updates.
*/} ) }