From 7a24d662b7f06f36ae4029f3d9037e232b5602ac Mon Sep 17 00:00:00 2001 From: Will Chou Date: Fri, 3 Jan 2025 21:50:03 -0500 Subject: [PATCH] extra new lines Signed-off-by: Will Chou --- packages/react/src/provider/use-open-feature-client-status.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/react/src/provider/use-open-feature-client-status.ts b/packages/react/src/provider/use-open-feature-client-status.ts index 95e2a1421..fac4a42b7 100644 --- a/packages/react/src/provider/use-open-feature-client-status.ts +++ b/packages/react/src/provider/use-open-feature-client-status.ts @@ -3,7 +3,6 @@ import { useOpenFeatureClient } from './use-open-feature-client'; import type { ProviderStatus } from '@openfeature/web-sdk'; import { ProviderEvents } from '@openfeature/web-sdk'; - /** * Get the {@link ProviderStatus} for the OpenFeatureClient. * @returns {ProviderStatus} status of the client for this scope @@ -30,6 +29,5 @@ export function useOpenFeatureClientStatus(): ProviderStatus { }; }, [client]); - return status; }