Skip to content
This repository was archived by the owner on Mar 8, 2022. It is now read-only.

Commit fdfa6ea

Browse files
committed
Return promise when sending feedback form
So I found out that the feedback form wasn't working.
1 parent a8ea597 commit fdfa6ea

File tree

5 files changed

+3
-6
lines changed

5 files changed

+3
-6
lines changed

dist/client/client.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/client/client.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/oonfig/config.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

dist/oonfig/config.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/client/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Client {
4242
}
4343

4444
protected doMutation(query: string, variables?: {}) {
45-
this.post({ query, variables });
45+
return this.post({ query, variables });
4646
}
4747

4848
private post(data: any, config: AxiosRequestConfig | undefined = undefined) {

0 commit comments

Comments
 (0)