diff --git a/src/state/KindeProvider.tsx b/src/state/KindeProvider.tsx index f14bfe6..58887c5 100644 --- a/src/state/KindeProvider.tsx +++ b/src/state/KindeProvider.tsx @@ -449,10 +449,10 @@ export const KindeProvider = ({ }, [init]); return ( - initRef.current && ( + initRef.current ? ( {children} - ) + ) : null ); };