diff --git a/web/components/contracts-list.tsx b/web/components/contracts-list.tsx
index 0c26eef9..c5d0e9d0 100644
--- a/web/components/contracts-list.tsx
+++ b/web/components/contracts-list.tsx
@@ -1,5 +1,5 @@
import Link from 'next/link'
-import { Col } from '../components/layout/col'
+import clsx from 'clsx'
import { Row } from '../components/layout/row'
import { useEffect, useState } from 'react'
import {
@@ -26,7 +26,7 @@ export function ContractDetails(props: { contract: Contract }) {
{resolvedDate ? `${createdDate} - ${resolvedDate}` : createdDate}
•
- {formatMoney(volume)} bet
+ {formatMoney(volume)} volume
)
}
@@ -55,29 +55,20 @@ function ContractCard(props: { contract: Contract }) {
-
- {/* Left side of card */}
-
-
- {contract.question}
-
-
+
+
+ {contract.question}
+
+
+ {resolutionText || (
+
+ {probPercent}
+
chance
+
+ )}
-
- {/* Right side of card */}
-
-
- {resolutionText || (
-
- {probPercent}
-
chance
-
- )}
-
-
-
+
+