Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya committed Dec 18, 2024
1 parent de3c581 commit 2b16d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/Transaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <TransactionDetailRow title={title} content={String(content)} />;
}
return null;
Expand Down

0 comments on commit 2b16d51

Please sign in to comment.