Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahschwartz committed Apr 17, 2024
1 parent 0261a54 commit 6084672
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/querying-from-a-dapp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This section covers just a few options available to get you started.

```javascript
export async function getHealth() {
let response = await fetch('https://beta-5.fuel.network/graphql', {
let response = await fetch(TESTNET_ENDPOINT, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down Expand Up @@ -83,5 +83,3 @@ export const checkHealth = async () => {
```

You can see more examples in the next section.
import { TESTNET_ENDPOINT } from "../src/constants"

0 comments on commit 6084672

Please sign in to comment.