Skip to content

Commit

Permalink
Fix receiver no amount typo (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
quietbits authored Sep 29, 2023
1 parent 367e0dd commit 56791ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MultipleAmounts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const MultipleAmounts = ({
amounts?: AmountReceived[];
}) => {
if (!amounts || amounts.length === 0) {
return <>"-"</>;
return <>{"-"}</>;
}

if (amounts.length === 1) {
Expand Down

0 comments on commit 56791ce

Please sign in to comment.