diff --git a/src/services/authService.ts b/src/services/authService.ts index 3daa7278..8329d82e 100644 --- a/src/services/authService.ts +++ b/src/services/authService.ts @@ -19,7 +19,6 @@ const AUTH_URL = `${SERVER_URL}/auth`; const authoriseGitHubApp = () => { const githubClientId = import.meta.env.VITE_GITHUB_CLIENT_ID; const githubApiUrl = import.meta.env.VITE_GITHUB_API_URL; - console.log('first', githubClientId, githubApiUrl); const { pathname, search } = location; window.localStorage.setItem( diff --git a/src/services/gistService.ts b/src/services/gistService.ts index 3f616861..3f1750de 100644 --- a/src/services/gistService.ts +++ b/src/services/gistService.ts @@ -31,7 +31,6 @@ export const uploadSnippet = async () => { files, publicGist: true, }; - //send request to the server const response = await axios.post(`${SERVER_URL}/gists`, body, { withCredentials: true }); console.log('response', response);