commit 0cc6dc06c9ead43f8227c21a1a2bb3a30c0eeae2
parent 237d031ae6dcadc635a1e22e82083500e42f99a2
Author: Sebastian <sebasjm@gmail.com>
Date: Mon, 27 Nov 2023 14:47:19 -0300
space after the sign
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/demobank-ui/src/pages/PaytoWireTransferForm.tsx b/packages/demobank-ui/src/pages/PaytoWireTransferForm.tsx
@@ -477,7 +477,7 @@ export function RenderAmount({ value, spec, negative, withColor, hideSmall }: {
const { currency, normal, small } = Amounts.stringifyValueWithSpec(value, spec)
return <span data-negative={withColor ? neg : undefined} class="whitespace-nowrap data-[negative=false]:text-green-600 data-[negative=true]:text-red-600">
- {negative ? "-" : undefined}
+ {negative ? "- " : undefined}
{currency} {normal} {!hideSmall && small && <sup class="-ml-1">{small}</sup>}
</span>
}
\ No newline at end of file