diff --git a/apps/kyb-app/src/common/types/settings.ts b/apps/kyb-app/src/common/types/settings.ts index d5310f4fb8..b386bd9897 100644 --- a/apps/kyb-app/src/common/types/settings.ts +++ b/apps/kyb-app/src/common/types/settings.ts @@ -8,6 +8,7 @@ export interface ITheme { poweredBy?: boolean; }; signup?: { + showJobTitle?: boolean; companyLogo: { imageSrc?: string; styles?: CSSProperties; diff --git a/apps/kyb-app/src/components/layouts/AppShell/AppShell.tsx b/apps/kyb-app/src/components/layouts/AppShell/AppShell.tsx index cf60de6b5b..bac48a36cf 100644 --- a/apps/kyb-app/src/components/layouts/AppShell/AppShell.tsx +++ b/apps/kyb-app/src/components/layouts/AppShell/AppShell.tsx @@ -10,7 +10,7 @@ interface Props { } export const AppShell = ({ children }: Props) => { - return
{children}
; + return
{children}
; }; AppShell.FormContainer = FormContainer; diff --git a/apps/kyb-app/src/components/layouts/AppShell/Sidebar.tsx b/apps/kyb-app/src/components/layouts/AppShell/Sidebar.tsx index 48baa1ea1c..182f66871b 100644 --- a/apps/kyb-app/src/components/layouts/AppShell/Sidebar.tsx +++ b/apps/kyb-app/src/components/layouts/AppShell/Sidebar.tsx @@ -7,7 +7,7 @@ interface Props { export const Sidebar = ({ children }: Props) => { return (