From 786b1dc25b6a49b9e0c8057e347b110cb9489fe0 Mon Sep 17 00:00:00 2001 From: Olava Faksdal <38139899+olavis@users.noreply.github.com> Date: Fri, 25 Aug 2023 13:15:33 +0200 Subject: [PATCH] style: formatting --- src/auth/apiClient.ts | 1 - tsconfig.json | 10 ++-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/src/auth/apiClient.ts b/src/auth/apiClient.ts index 7c615886..dba6fa6c 100644 --- a/src/auth/apiClient.ts +++ b/src/auth/apiClient.ts @@ -4,7 +4,6 @@ import { apiConfig } from './authConfig' export const apiClient = createClient({ baseUrl: apiConfig.baseUrl, - // headers: new Headers({ Authorization: `Bearer ${token}` }), }) export type ApiClient = typeof apiClient diff --git a/tsconfig.json b/tsconfig.json index 56edf9e7..70ca8551 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, @@ -20,7 +16,5 @@ "noEmit": true, "jsx": "react-jsx" }, - "include": [ - "src/**/*" - ] + "include": ["src/**/*"] }