this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

good boy

+3 -2
+1
src/main.tsx
··· 20 20 scrollRestoration: true, 21 21 defaultStructuralSharing: true, 22 22 defaultPreloadStaleTime: 0, 23 + defaultPendingMs: 0, 23 24 }); 24 25 25 26 // Register the router instance for type safety
+2 -2
src/routes/pagination.tsx
··· 113 113 }, [data?.next]); 114 114 115 115 if (previousOffset !== null) { 116 - queryClient.prefetchQuery({ 116 + void queryClient.prefetchQuery({ 117 117 ...pokemonListOptions, 118 118 queryKey: [ 119 119 "pokemon-list", ··· 124 124 } 125 125 126 126 if (nextOffset !== null) { 127 - queryClient.prefetchQuery({ 127 + void queryClient.prefetchQuery({ 128 128 ...pokemonListOptions, 129 129 queryKey: [ 130 130 "pokemon-list",