remove console.log

This commit is contained in:
Igor Carvalho 2023-08-07 13:36:17 -03:00
commit 808933e4c1

View file

@ -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!);