Tiago Silva

Results 3 issues of Tiago Silva

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