diff options
author | Sebastian <sebasjm@gmail.com> | 2023-11-21 08:15:21 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-11-21 08:16:13 -0300 |
commit | 7c8c7692fb179e049ca80087d3573dc9b256fcdb (patch) | |
tree | 28a37dc3292798e7a04bf999a1849b1e9dbc10ae /packages/aml-backoffice-ui/src/pages/ShowConsolidated.tsx | |
parent | 342df60abe6d8b8b0c51e79cf13c7edcca58d9f9 (diff) |
fix compile error
Diffstat (limited to 'packages/aml-backoffice-ui/src/pages/ShowConsolidated.tsx')
-rw-r--r-- | packages/aml-backoffice-ui/src/pages/ShowConsolidated.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/aml-backoffice-ui/src/pages/ShowConsolidated.tsx b/packages/aml-backoffice-ui/src/pages/ShowConsolidated.tsx index 0efc68632..bd25ce958 100644 --- a/packages/aml-backoffice-ui/src/pages/ShowConsolidated.tsx +++ b/packages/aml-backoffice-ui/src/pages/ShowConsolidated.tsx @@ -18,7 +18,6 @@ export function ShowConsolidated({ const cons = getConsolidated(history, until); const form: FlexibleForm<Consolidated> = { - versionId: "1", behavior: (form) => { return { aml: { @@ -93,10 +92,10 @@ export function ShowConsolidated({ return ( <Fragment> <h1 class="text-base font-semibold leading-7 text-black"> - Consolidated information + Consolidated information {until.t_ms === "never" ? "" - : `after ${format(until.t_ms, "dd MMMM yyyy")}` } + : `after ${format(until.t_ms, "dd MMMM yyyy")}`} </h1> <NiceForm key={`${String(Date.now())}`} |