This commit is contained in:
LingDocs 2021-09-21 14:33:07 -04:00 committed by GitHub
parent cf223e3d14
commit b6929de1a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -36,9 +36,7 @@ export async function updateUserTextOptionsRecord(userTextOptionsRecord: AT.User
}
export async function postTestResults(tests: AT.TestResult[]): Promise<AT.PostTestResultsResponse> {
console.log("inside post test results, gonna call myfetch");
const response = await myFetch("account", "user/tests", "PUT", { tests }) as AT.PostTestResultsResponse;
console.log("response from posting test results", response);
return response;
}
@ -73,7 +71,6 @@ export async function myFetch(
// better typing and safety of all this
body?: FT.SubmissionsRequest | { password: string } | AT.UpdateUserTextOptionsRecordBody | AT.PostTestResultsBody,
): Promise<AT.APIResponse> {
console.log("inside my fetch")
const response = await fetch(baseUrl[service] + url, {
method,
credentials: "include",
@ -84,9 +81,7 @@ export async function myFetch(
body: JSON.stringify(body),
} : {},
});
console.log("response from my fetch", response);
const text = await response.text();
console.log("as text", text);
try {
return JSON.parse(text);
} catch (e) {