Skip to content

Commit a2a93be

Browse files
authored
fix: gqlPostOrThrow config var usage
1 parent c7224ae commit a2a93be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ class Client {
7272
}
7373

7474
async gqlPostOrThrow<U, V>(payload: GraphQLRequest<U>): Promise<V> {
75-
const token = process.env.FLY_API_TOKEN
76-
const resp = await crossFetch(`${FLY_API_GRAPHQL}/graphql`, {
75+
const token = this.apiKey
76+
const resp = await crossFetch(`${this.graphqlUrl}/graphql`, {
7777
method: 'POST',
7878
headers: {
7979
Authorization: `Bearer ${token}`,

0 commit comments

Comments
 (0)