Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafasaifee42 committed Oct 21, 2024
1 parent 7bc6cbb commit 5143d19
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@ import axios, { AxiosError, AxiosResponse } from 'axios';
import { useEffect, useReducer, useMemo, useState } from 'react';
import { Footer } from './Components/FooterEl';
import { SignUpButton } from './Components/SignUpButton';
import {
API_ACCESS_TOKEN,
CHOICES,
CLIENT_ID,
REDIRECT_URL,
} from './Constants';
import { API_ACCESS_TOKEN, CHOICES, CLIENT_ID } from './Constants';
import Context from './Context/Context';
import Reducer from './Context/Reducer';
import MainBody from './MainBody';
Expand All @@ -27,8 +22,6 @@ import { SignedOutHomePage } from './HomePage/SignedOutHomepage';
import { signOutClickHandler } from './Utils/SignOutClickHandler';

function App() {
// eslint-disable-next-line no-console
console.log(REDIRECT_URL, CLIENT_ID);
const isAuthenticated = useIsAuthenticated();
const [openModal, setOpenModal] = useState(false);
const [selectedUnit, setSelectedUnit] = useState<string | undefined>(
Expand Down

0 comments on commit 5143d19

Please sign in to comment.