From 5e24240733ed533c66bb11aece3d3905e320172f Mon Sep 17 00:00:00 2001 From: Yordis Prieto Date: Tue, 27 Aug 2024 22:26:38 -0400 Subject: [PATCH] chore: format code --- .../src/components/ZitadelReactProvider.tsx | 4 +--- packages/zitadel-react/src/index.tsx | 10 ++-------- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/packages/zitadel-react/src/components/ZitadelReactProvider.tsx b/packages/zitadel-react/src/components/ZitadelReactProvider.tsx index 7ffe40a7357..34226e5b296 100644 --- a/packages/zitadel-react/src/components/ZitadelReactProvider.tsx +++ b/packages/zitadel-react/src/components/ZitadelReactProvider.tsx @@ -4,7 +4,5 @@ export type ZitadelReactProps = { }; export function ZitadelReactProvider({ dark, children }: ZitadelReactProps) { - return ( -
{children}
- ); + return
{children}
; } diff --git a/packages/zitadel-react/src/index.tsx b/packages/zitadel-react/src/index.tsx index 4ba8a3ea0f1..e65655d6c8a 100644 --- a/packages/zitadel-react/src/index.tsx +++ b/packages/zitadel-react/src/index.tsx @@ -8,12 +8,6 @@ export { SignInWithAzureAD } from "./components/SignInWithAzureAD"; export { SignInWithGithub } from "./components/SignInWithGithub"; -export { - ZitadelReactProvider, - type ZitadelReactProps, -} from "./components/ZitadelReactProvider"; +export { ZitadelReactProvider, type ZitadelReactProps } from "./components/ZitadelReactProvider"; -export { - SignInWithIDP, - type SignInWithIDPProps, -} from "./components/SignInWithIDP"; +export { SignInWithIDP, type SignInWithIDPProps } from "./components/SignInWithIDP";