Skip to content

Commit

Permalink
chore(fe): remove contest card progress circle (#2078)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kohminchae authored Sep 8, 2024
1 parent d522b22 commit a148e7c
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions apps/frontend/app/(main)/_components/ContestCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down Expand Up @@ -64,12 +63,6 @@ export default function ContestCard({ contest }: Props) {
inContestEditor={false}
/>
</div>
{(contest.status == 'ongoing' ||
contest.status == 'registeredOngoing') && (
<div className="hidden h-12 w-12 min-[400px]:block">
<CircularProgressbar value={60} text="60%" />
</div>
)}
</div>
</div>
)
Expand Down

0 comments on commit a148e7c

Please sign in to comment.