diff --git a/packages/features/src/components/app-layout.tsx b/packages/features/src/components/app-layout.tsx index abb13386..0e120576 100644 --- a/packages/features/src/components/app-layout.tsx +++ b/packages/features/src/components/app-layout.tsx @@ -5,9 +5,10 @@ import { useLocation } from "react-router-dom" interface AppLayoutProps { children: React.ReactNode + className?: string } -export const AppLayout = ({ children }: AppLayoutProps) => { +export const AppLayout = ({ children, className }: AppLayoutProps) => { const location = useLocation() // biome-ignore lint: dependent just on location useEffect(() => { @@ -17,7 +18,10 @@ export const AppLayout = ({ children }: AppLayoutProps) => { } }, [location]) return ( -
+
{children}
) diff --git a/packages/features/src/credentials/views/credential-details.tsx b/packages/features/src/credentials/views/credential-details.tsx index dc54ba21..855f5c6b 100644 --- a/packages/features/src/credentials/views/credential-details.tsx +++ b/packages/features/src/credentials/views/credential-details.tsx @@ -17,16 +17,22 @@ export const CredentialDetailsView = ({ }: CredentialDetailsViewProps) => { const { t } = useTranslation() return ( - - -
-

{id}

-
+ +
+ +

{id}

+
{credential}
- +
+ +
)