Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Jun 17, 2024
1 parent f92fb4f commit 4960090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/round-manager/src/features/round/RoundCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export const RoundCard: React.FC<CardProps> = (props: CardProps) => (
<CardDescription className=" text-gray-500">
<div className="flex flex-col mt-4">
<div>
{/* todo: udpate bg color for strategy type */}
<span
className={`border border-${props.color} rounded-2xl bg-${props.color} p-1 px-2 font-mono`}
>
Expand Down
4 changes: 2 additions & 2 deletions packages/round-manager/src/features/round/RoundListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ function ListRounds() {
status={status}
color={
round.strategyName === "allov2.DirectGrantsLiteStrategy"
? "green-100"
: "yellow-100"
? "yellow-100"
: "green-100"
}
displayDate={prettyDates(round.roundStartTime, round.roundEndTime)}
footerContent={
Expand Down

0 comments on commit 4960090

Please sign in to comment.