diff options
author | Sebastian <sebasjm@gmail.com> | 2023-10-03 10:11:21 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-10-03 10:11:33 -0300 |
commit | e84d2b6175da8c308835f1a7f27e177dcecd248a (patch) | |
tree | de69d68c9915e8ccac11ccd9e3bc981386c1850a /packages/demobank-ui/src/components/Transactions/views.tsx | |
parent | 8e70b89593a375bb19432e6521daed618ae779f5 (diff) |
more ui, removed some testing values
Diffstat (limited to 'packages/demobank-ui/src/components/Transactions/views.tsx')
-rw-r--r-- | packages/demobank-ui/src/components/Transactions/views.tsx | 4 |
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" }}><{i18n.str`invalid value`}></span> |