diff --git a/frontend/src/app/markets/[id]/page.tsx b/frontend/src/app/markets/[id]/page.tsx
index 8557ad4..871068f 100644
--- a/frontend/src/app/markets/[id]/page.tsx
+++ b/frontend/src/app/markets/[id]/page.tsx
@@ -279,12 +279,19 @@ export default function MarketDetailPage({
- {claiming ? (
-
{claimError}
diff --git a/frontend/src/components/ui/Button.tsx b/frontend/src/components/ui/Button.tsx index cf5ade0..9f62614 100644 --- a/frontend/src/components/ui/Button.tsx +++ b/frontend/src/components/ui/Button.tsx @@ -1,13 +1,15 @@ import React from "react"; +import { FiLoader } from "react-icons/fi"; type Variant = "primary" | "secondary" | "ghost"; interface ButtonProps extends React.ButtonHTMLAttributes