diff --git a/pages/Transaction.tsx b/pages/Transaction.tsx index 211cb2b..2106467 100644 --- a/pages/Transaction.tsx +++ b/pages/Transaction.tsx @@ -205,7 +205,7 @@ function TransactionDetailRow(props: { function PodcastingInfo({ boost }: { boost: Boostagram }) { const renderDetail = (title: string, content: any) => { - if (content === 0 && !!content) { + if (content === 0 || !!content) { return ; } return null;