Skip to content

Commit

Permalink
style(BountyDetails): remove debug console log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
fedosov committed Jan 7, 2025
1 parent 273c3b7 commit 937b6c9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions app/components/governance/BountyDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ export function BountyDetails({ bountyId, motion, type, curator, fee, showHeader
try {
const bountyInfo = (await api.query.bounties.bounties(bountyId)) as Option<any>;
const unwrapped = bountyInfo.unwrapOr(null);
console.log(
"Bounty data:",
JSON.stringify(unwrapped, (_, v) => (typeof v === "bigint" ? v.toString() : v), 2)
);

// Fetch description from bounty description storage
const descriptionHash = (await api.query.bounties.bountyDescriptions(bountyId)) as Option<any>;
Expand Down

0 comments on commit 937b6c9

Please sign in to comment.