From 98e074d6ff498ab3a7ca3be4995dcb05d3e9b39c Mon Sep 17 00:00:00 2001 From: wslyvh Date: Wed, 10 Jul 2024 13:58:12 +0200 Subject: [PATCH] build fix --- packages/frontend/src/components/info/VoucherTimeLeft.tsx | 2 -- 1 file changed, 2 deletions(-) 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.
*/} ) }