Tiago Silva
Tiago Silva
close: #247
Para que os filtros fossem persistido eu utilizei o localStorage. Veja: ```typescript useEffect(() => { const storedSearchParams = localStorage.getItem('searchParams'); if (storedSearchParams) { setSearchParams(new URLSearchParams(storedSearchParams)); } }, []); ``` Nesse trecho...
Solving issue #1757 which was returning the time to zero. Now I save the start time and then set the final result with the start time. close: #1757