File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export const AppWrapper: React.FC = () => {
7474 useEffect ( ( ) => {
7575 const slideQuery = searchParams . get ( SLIDE_QUERY_KEY ) ;
7676 slideQuery !== null && setSlideQuery ( slideQuery ) ;
77- } , [ pathname ] ) ;
77+ } , [ pathname , setSearchParams ] ) ;
7878
7979 // Time string
8080 useEffect ( ( ) => {
@@ -106,9 +106,8 @@ export const AppWrapper: React.FC = () => {
106106 searchParams . delete ( SLIDE_QUERY_KEY ) ;
107107 } else {
108108 isValidUUID ( slideID ) && searchParams . set ( SLIDE_QUERY_KEY , slideID ) ;
109- setSlideQuery ( slideID ) ;
109+ setSearchParams ( searchParams ) ;
110110 }
111- setSearchParams ( searchParams ) ;
112111 } ;
113112
114113 const addDateToParams = ( timeFilterString : CreatedFilterOptions ) => {
Original file line number Diff line number Diff line change @@ -372,6 +372,7 @@ export const PoolDetails: () => JSX.Element = () => {
372372 dataTotal = { tokenTransferTotal }
373373 currentPage = { currentPage }
374374 rowsPerPage = { rowsPerPage }
375+ dashboardSize
375376 headerBtn = {
376377 < IconButton
377378 onClick = { ( ) =>
You can’t perform that action at this time.
0 commit comments