File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ export const replaceRouteIfNeeded = ({
6868 } else if ( replaceToLoggedInRoute && routeFromSearchParam ) {
6969 route = routeFromSearchParam ;
7070 }
71- debugger ;
71+
7272 replaceRoute ( route ) ;
7373 } , 0 ) ;
7474 }
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export const useService = (): ServiceInterface => {
5151 } ) ,
5252 ) ;
5353 dispatch ( pipelinesActions . getMy ( ) ) ;
54- } , 10000 ) ;
54+ } , 5000 ) ;
5555
5656 return ( ) => clearInterval ( intervalId ) ; //This is important
5757 } ) ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export const DeleteMember: React.FC<{ member: TInvite }> = ({ member }) => {
2525 const intervalId = setInterval ( ( ) => {
2626 //assign interval to a variable to clear it.
2727 dispatch ( organizationActions . getMembers ( { } ) ) ;
28- } , 10000 ) ;
28+ } , 5000 ) ;
2929
3030 return ( ) => clearInterval ( intervalId ) ; //This is important
3131 } ) ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export const RunsTable: React.FC<{
2929 const openDetailPage = ( run : TRun ) => {
3030 setSelectedRunIds ( [ ] ) ;
3131 history . push (
32- routePaths . run . component . results (
32+ routePaths . run . component . statistics (
3333 locationPath . split ( '/' ) [ 2 ] ,
3434 run . stackComponentId ,
3535 run . id ,
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export const useService = (): ServiceInterface => {
5858 onFailure : ( ) => setFetching ( false ) ,
5959 } ) ,
6060 ) ;
61- } , 10000 ) ;
61+ } , 5000 ) ;
6262
6363 return ( ) => clearInterval ( intervalId ) ;
6464 } ) ;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export const useService = (): ServiceInterface => {
5353 onFailure : ( ) => setFetching ( false ) ,
5454 } ) ,
5555 ) ;
56- } , 10000 ) ;
56+ } , 5000 ) ;
5757
5858 return ( ) => clearInterval ( intervalId ) ; //This is important
5959 } ) ;
You can’t perform that action at this time.
0 commit comments