From ec7b080ad9b03f59833969484145a7668315feff Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 28 Feb 2022 12:59:37 -0800 Subject: [PATCH] Remove logs --- components/RaidDropdown/index.tsx | 1 - pages/[username].tsx | 1 - pages/saved.tsx | 2 -- pages/teams.tsx | 2 -- 4 files changed, 6 deletions(-) diff --git a/components/RaidDropdown/index.tsx b/components/RaidDropdown/index.tsx index 3d9e4399..208af245 100644 --- a/components/RaidDropdown/index.tsx +++ b/components/RaidDropdown/index.tsx @@ -55,7 +55,6 @@ const RaidDropdown = React.forwardRef(function useFiel } : {} function fetchRaids() { - console.log("Fetching list of raids...") api.endpoints.raids.getAll(headers) .then((response) => { const raids = response.data.map((r: any) => r.raid) diff --git a/pages/[username].tsx b/pages/[username].tsx index eba50ebd..96d4b88e 100644 --- a/pages/[username].tsx +++ b/pages/[username].tsx @@ -21,7 +21,6 @@ const ProfileRoute: React.FC = () => { }) useEffect(() => { - console.log(`Fetching profile for ${username}...`) fetchProfile(username as string) }, [username]) diff --git a/pages/saved.tsx b/pages/saved.tsx index 8f547c60..ef2b28ac 100644 --- a/pages/saved.tsx +++ b/pages/saved.tsx @@ -44,8 +44,6 @@ const SavedRoute: React.FC = () => { }, []) const fetchTeams = useCallback(() => { - console.log(`Fetching favorite teams with filters... ${element} ${raidId} ${recencyInSeconds}`) - const filterParams = { params: { element: element, diff --git a/pages/teams.tsx b/pages/teams.tsx index c6e43cca..76c6d21b 100644 --- a/pages/teams.tsx +++ b/pages/teams.tsx @@ -44,8 +44,6 @@ const TeamsRoute: React.FC = () => { }, []) const fetchTeams = useCallback(() => { - console.log(`Fetching teams with filters... ${element} ${raidId} ${recencyInSeconds}`) - const filterParams = { params: { element: element,