aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/components/Transactions/views.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-10-03 10:11:21 -0300
committerSebastian <sebasjm@gmail.com>2023-10-03 10:11:33 -0300
commite84d2b6175da8c308835f1a7f27e177dcecd248a (patch)
treede69d68c9915e8ccac11ccd9e3bc981386c1850a /packages/demobank-ui/src/components/Transactions/views.tsx
parent8e70b89593a375bb19432e6521daed618ae779f5 (diff)
downloadwallet-core-e84d2b6175da8c308835f1a7f27e177dcecd248a.tar.xz
more ui, removed some testing valuesv0.9.3-dev.29
Diffstat (limited to 'packages/demobank-ui/src/components/Transactions/views.tsx')
-rw-r--r--packages/demobank-ui/src/components/Transactions/views.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/demobank-ui/src/components/Transactions/views.tsx b/packages/demobank-ui/src/components/Transactions/views.tsx
index 69f4369a2..696fb59f3 100644
--- a/packages/demobank-ui/src/components/Transactions/views.tsx
+++ b/packages/demobank-ui/src/components/Transactions/views.tsx
@@ -81,9 +81,7 @@ export function ReadyView({ transactions, onNext, onPrev }: State.Ready): VNode
<dl class="font-normal sm:hidden">
<dt class="sr-only sm:hidden"><i18n.Translate>Amount</i18n.Translate></dt>
<dd class="mt-1 truncate text-gray-700">
- {item.negative ? i18n.str`sent` : i18n.str`received`}
-
- {item.amount ? (
+ {item.negative ? i18n.str`sent` : i18n.str`received`} {item.amount ? (
<RenderAmount value={item.amount} />
) : (
<span style={{ color: "grey" }}>&lt;{i18n.str`invalid value`}&gt;</span>