Skip to content

Commit 02e2f94

Browse files
authored
Typo in providers docs (#312)
1 parent 7607e7c commit 02e2f94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docs/providers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ The `useHypergraphApp` is available inside the `HypergraphAppProvider` and manag
2828
import { useHypergraphApp } from "@graphprotocol/hypergraph-react";
2929

3030
const App = () => {
31-
const { isConnected, logout } = useHypergraphApp();
31+
const { isConnecting, logout } = useHypergraphApp();
3232
return <div>{isConnecting ? "Connecting..."}</div>;
3333
};
3434
```
3535
36-
- `isConnected` is a boolean that indicates that syncing private spaces is not yet possible. You need to wait until it's `false` to query data from private spaces.
36+
- `isConnecting` is a boolean that indicates that syncing private spaces is not yet possible. You need to wait until it's `false` to query data from private spaces.
3737
- `logout` is a function that logs out the user.
3838
3939
There are serveral more that will be explained in the following sections.

0 commit comments

Comments
 (0)