aboutsummaryrefslogtreecommitdiff
path: root/packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx')
-rw-r--r--packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx13
1 files changed, 11 insertions, 2 deletions
diff --git a/packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx b/packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx
index 44cd0ce82..ca7f9b0b5 100644
--- a/packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx
+++ b/packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx
@@ -208,7 +208,12 @@ export function ExchangeAmlFrame({
<div class="-mt-32 flex grow ">
{officer?.state !== "ready" ? undefined : <Navigation />}
<div class="flex mx-auto my-4">
- <main class="block rounded-lg bg-white px-5 py-6 shadow " style={{minWidth: 300}} >{children}</main>
+ <main
+ class="block rounded-lg bg-white px-5 py-6 shadow "
+ style={{ minWidth: 300 }}
+ >
+ {children}
+ </main>
</div>
</div>
@@ -225,7 +230,11 @@ function Navigation(): VNode {
const { i18n } = useTranslationContext();
const pageList = [
{ route: privatePages.profile, Icon: PeopleIcon, label: i18n.str`Profile` },
- { route: privatePages.investigation, Icon: ToInvestigateIcon, label: i18n.str`Investigation` },
+ {
+ route: privatePages.investigation,
+ Icon: ToInvestigateIcon,
+ label: i18n.str`Investigation`,
+ },
{ route: privatePages.active, Icon: HomeIcon, label: i18n.str`Active` },
];
const { path } = useNavigationContext();