Skip to content

Commit c3fd39e

Browse files
committed
run trunk fmt
1 parent 637b11e commit c3fd39e

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed
-130 KB
Loading
-178 KB
Loading

integrate-api.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ You can access the API by passing the API token in the `Authorization` header. H
1616
<CodeGroup>
1717

1818
```javascript index.js
19-
const endpoint = '' // your API endpoint
20-
const key = '' // your API key
21-
// your graphql query
19+
const endpoint = ""; // your API endpoint
20+
const key = ""; // your API key
21+
// your graphql query
2222
const query = `query {
2323
...
24-
}`
24+
}`;
2525

2626
const response = await fetch(endpoint, {
2727
method: "POST",
@@ -32,8 +32,8 @@ const response = await fetch(endpoint, {
3232
body: JSON.stringify({
3333
query: query,
3434
}),
35-
})
36-
const data = await response.json()
35+
});
36+
const data = await response.json();
3737
```
3838

3939
</CodeGroup>

observe-functions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ console.Error("This is an error message.")
3737

3838
</CodeGroup>
3939

40-
In your project dashboard, navigate to the Function Runs tab to view execution logs of your functions.
40+
In your project dashboard, navigate to the Function Runs tab to view execution logs of your functions.
4141

4242
![function runs](images/observe-functions/function-runs.png)
4343

work-locally.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ title: Work Locally
33
description: ""
44
---
55

6-
76
<Warning>connecting to Hypermode-hosted shared models</Warning>

0 commit comments

Comments
 (0)