diff --git a/src/app/issues/[id]/IssueActions.tsx b/src/app/issues/[id]/IssueActions.tsx
index 3ceb6c7..7d960e3 100644
--- a/src/app/issues/[id]/IssueActions.tsx
+++ b/src/app/issues/[id]/IssueActions.tsx
@@ -128,11 +128,14 @@ export function IssueActions({ bounty }: { bounty: Bounty }) {
{pending ? "Claiming..." : "Claim this issue"}
)}
- {(bounty.status === "funded" || bounty.status === "claimed") && (
-
- )}
+ {(bounty.status === "funded" || bounty.status === "claimed") &&
+ address &&
+ bounty.sponsorAddress &&
+ address.toLowerCase() === bounty.sponsorAddress.toLowerCase() && (
+
+ )}
{["in_review", "merged", "paid", "refunded", "expired"].includes(
bounty.status,
) && (