Skip to content

Commit 6cb632c

Browse files
shanejonaszcstarr
andauthored
Update src/transports/HTTPTransport.ts
Co-authored-by: Zane Starr <zcstarr@gmail.com>
1 parent cb65fae commit 6cb632c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transports/HTTPTransport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fetch from "isomorphic-fetch";
22
import { ITransport } from "./ITransport";
33
let id = 1;
44

5-
const htttpTransport: ITransport = async (url: string, method: string, params: any[]) => {
5+
const httpTransport: ITransport = async (url: string, method: string, params: any[]) => {
66
return fetch(url, {
77
method: "POST",
88
headers: { "Content-Type": "application/json" },

0 commit comments

Comments
 (0)