diff --git a/inbox/react/hooks/novu-provider.mdx b/inbox/react/hooks/novu-provider.mdx index 060ad6cb..fffe2d62 100644 --- a/inbox/react/hooks/novu-provider.mdx +++ b/inbox/react/hooks/novu-provider.mdx @@ -6,7 +6,7 @@ import NovuProviderExample from '/snippets/inbox/react/novu-provider-example.mdx import NovuParams from '/snippets/inbox/headless/api-reference/novu-params.mdx'; The `NovuProvider` is the top-level component that provides the [Novu instance](/inbox/headless/api-reference#novu) to the rest of the hooks through the context. -Usually it's placed somewhere at the root of your application, which allows the hooks to be accessible throughout the application. +Usually, it's placed somewhere in the root of your application, which makes the hooks accessible throughout the application. ## `NovuProvider` props diff --git a/inbox/react/hooks/use-counts.mdx b/inbox/react/hooks/use-counts.mdx index af7d49a7..0f30b8f7 100644 --- a/inbox/react/hooks/use-counts.mdx +++ b/inbox/react/hooks/use-counts.mdx @@ -34,7 +34,8 @@ The hook listens for changes in notification counts and will automatically refet notification counts fetched yet, it will be `undefined`. - A boolean value indicating whether the notification counts are being fetched. + A boolean value indicating the first fetch for notification counts is + in-flight. A boolean value indicating whether the hook is fetching more notification diff --git a/inbox/react/hooks/use-notifications.mdx b/inbox/react/hooks/use-notifications.mdx index 6d15c51f..3679d090 100644 --- a/inbox/react/hooks/use-notifications.mdx +++ b/inbox/react/hooks/use-notifications.mdx @@ -48,7 +48,7 @@ Any action performed on a notification instance, like marking it as read, will o fetched yet, it will be `undefined`. - A boolean value indicating whether the notifications are being fetched. + A boolean value indicating the first fetch for notifications is in-flight. A boolean value indicating whether the hook is fetching more notifications. diff --git a/inbox/react/hooks/use-preferences.mdx b/inbox/react/hooks/use-preferences.mdx index 2b92b783..8c40fb46 100644 --- a/inbox/react/hooks/use-preferences.mdx +++ b/inbox/react/hooks/use-preferences.mdx @@ -30,7 +30,7 @@ By default the preferences are cached, but you can use the `refetch` function to preferences fetched yet, it will be `undefined`. - A boolean value indicating whether the preferences are being fetched. + A boolean value indicating the first fetch for preferences is in-flight. A boolean value indicating whether the hook is fetching more preferences.