From 3d7f029c76ba5363eec15edf21ee8d419607ad32 Mon Sep 17 00:00:00 2001 From: Kohminchae Date: Sun, 8 Sep 2024 21:21:45 +0900 Subject: [PATCH] chore(fe): remove contest card progress circle --- apps/frontend/app/(main)/_components/ContestCard.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/apps/frontend/app/(main)/_components/ContestCard.tsx b/apps/frontend/app/(main)/_components/ContestCard.tsx index 7e27120af8..b6fa300a51 100644 --- a/apps/frontend/app/(main)/_components/ContestCard.tsx +++ b/apps/frontend/app/(main)/_components/ContestCard.tsx @@ -5,7 +5,6 @@ import { cn, dateFormatter } from '@/lib/utils' import CalendarIcon from '@/public/20_calendar.svg' import type { Contest } from '@/types/type' import Image from 'next/image' -import { CircularProgressbar } from 'react-circular-progressbar' import 'react-circular-progressbar/dist/styles.css' import StatusBadge from './StatusBadge' @@ -64,12 +63,6 @@ export default function ContestCard({ contest }: Props) { inContestEditor={false} /> - {(contest.status == 'ongoing' || - contest.status == 'registeredOngoing') && ( -
- -
- )} )