From 808933e4c1b2853b4f774f5f5197b43535a14c9c Mon Sep 17 00:00:00 2001 From: Igor Carvalho Date: Mon, 7 Aug 2023 13:36:17 -0300 Subject: [PATCH] remove console.log --- src/frontend/src/contexts/typesContext.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/frontend/src/contexts/typesContext.tsx b/src/frontend/src/contexts/typesContext.tsx index 2e02e5bcb..659f303ac 100644 --- a/src/frontend/src/contexts/typesContext.tsx +++ b/src/frontend/src/contexts/typesContext.tsx @@ -78,7 +78,6 @@ export function TypesProvider({ children }: { children: ReactNode }) { // Start the initial interval. intervalId = setInterval(getTypes, delay); - console.log(intervalId) return () => { // This will clear the interval when the component unmounts, or when the dependencies of the useEffect hook change. clearInterval(intervalId!);