diff --git a/frontend/src/app/auctions/page.tsx b/frontend/src/app/auctions/page.tsx
index 58a99d3..f1ec485 100644
--- a/frontend/src/app/auctions/page.tsx
+++ b/frontend/src/app/auctions/page.tsx
@@ -49,7 +49,7 @@ interface Auction {
age_years: number | null
tld: string
affiliate_url: string
- valuation: AuctionValuation | null
+ valuation?: AuctionValuation | null
}
interface Opportunity {
diff --git a/frontend/src/app/dashboard/page.tsx b/frontend/src/app/dashboard/page.tsx
index 7449bc3..c307944 100644
--- a/frontend/src/app/dashboard/page.tsx
+++ b/frontend/src/app/dashboard/page.tsx
@@ -682,17 +682,17 @@ export default function DashboardPage() {