diff options
author | Sebastian <sebasjm@gmail.com> | 2023-05-16 01:23:44 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-05-16 01:23:44 -0300 |
commit | 245ab840baf1926ef2c03a8965fce85012887d92 (patch) | |
tree | 1acec43e991100292f82db241eec70d073b6365b /packages/exchange-backoffice-ui/src/Dashborad.tsx | |
parent | 02fb71c0ff69d293911f4b0945ab964a87402d0c (diff) |
one form left
Diffstat (limited to 'packages/exchange-backoffice-ui/src/Dashborad.tsx')
-rw-r--r-- | packages/exchange-backoffice-ui/src/Dashborad.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/packages/exchange-backoffice-ui/src/Dashborad.tsx b/packages/exchange-backoffice-ui/src/Dashborad.tsx index f31160fee..dce41b496 100644 --- a/packages/exchange-backoffice-ui/src/Dashborad.tsx +++ b/packages/exchange-backoffice-ui/src/Dashborad.tsx @@ -77,17 +77,17 @@ const navigation = [ impl: form_902_13e_v1, }, { - name: "WIP (902.15e)", + name: "Information on life insurance policies (902.15e)", icon: DocumentDuplicateIcon, impl: form_902_15e_v1, }, { - name: "WIP (902.9e)", + name: "Declaration of beneficial owner (902.9e)", icon: DocumentDuplicateIcon, impl: form_902_9e_v1, }, { - name: "WIP (902.5e)", + name: "Customer profile (902.5e)", icon: DocumentDuplicateIcon, impl: form_902_5e_v1, }, @@ -167,7 +167,7 @@ export function Dashboard({ children?: ComponentChildren; }): VNode { const [sidebarOpen, setSidebarOpen] = useState(false); - const [selectedForm, setSelectedForm] = useState(3); + const [selectedForm, setSelectedForm] = useState(6); function changeForm(next: number) { setSelectedForm(next); } @@ -177,6 +177,9 @@ export function Dashboard({ when: { t_ms: new Date().getTime(), }, + originOfAssets: { + currency: "usd", + }, }; function showFormOnSidebar(v: any) { if (!logRef.current) return; |