Browse Source

fix(api): Remove unused `@ts-expect-error` (#5131)

Fabian-Lars 2 years ago
parent
commit
0837454b00
1 changed files with 0 additions and 1 deletions
  1. 0 1
      tooling/api/src/http.ts

+ 0 - 1
tooling/api/src/http.ts

@@ -312,7 +312,6 @@ class Client {
       if (jsonResponse) {
         /* eslint-disable */
         try {
-          // @ts-expect-error
           response.data = JSON.parse(response.data as string)
         } catch (e) {
           if (response.ok && (response.data as unknown as string) === '') {