@@ -179,7 +179,7 @@ class FeedbackBoardContainer extends React.Component<FeedbackBoardContainerProps
179
179
180
180
try {
181
181
const initializedTeamAndBoardState = await this . initializeFeedbackBoard ( ) ;
182
-
182
+ console . log ( { location : "componentDidMount" , initializedTeamAndBoardState } ) ;
183
183
initialCurrentTeam = initializedTeamAndBoardState . currentTeam ;
184
184
initialCurrentBoard = initializedTeamAndBoardState . currentBoard ;
185
185
@@ -517,7 +517,7 @@ console.log({ location: "handleNewBoardAvailable", boardsForTeam });
517
517
// If the teamId query param doesn't exist, attempt to pre-select a team and board by last
518
518
// visited user records.
519
519
const recentVisitState = await this . loadRecentlyVisitedOrDefaultTeamAndBoardState ( defaultTeam , userTeams ) ;
520
-
520
+ console . log ( { location : "initializeFeedbackBoard - 10" , recentVisitState } ) ;
521
521
return {
522
522
...baseTeamState ,
523
523
...recentVisitState ,
@@ -538,7 +538,7 @@ console.log({ location: "handleNewBoardAvailable", boardsForTeam });
538
538
teamBoardDeletedDialogTitle : 'Team not found' ,
539
539
teamBoardDeletedDialogMessage : 'Could not find the team specified in the url.' ,
540
540
}
541
- console . log ( { location : "initializeFeedbackBoard - 0 " , recentVisitWithDialogState } ) ;
541
+ console . log ( { location : "initializeFeedbackBoard - 20 " , recentVisitWithDialogState } ) ;
542
542
return {
543
543
...baseTeamState ,
544
544
...recentVisitWithDialogState ,
@@ -547,11 +547,11 @@ console.log({ location: "initializeFeedbackBoard - 0", recentVisitWithDialogSta
547
547
548
548
let boardsForMatchedTeam = await BoardDataService . getBoardsForTeam ( matchedTeam . id ) ;
549
549
if ( boardsForMatchedTeam && boardsForMatchedTeam . length ) {
550
- console . log ( { location : "initializeFeedbackBoard - 1 " , boardsForMatchedTeam } ) ;
550
+ console . log ( { location : "initializeFeedbackBoard - 30 " , boardsForMatchedTeam } ) ;
551
551
boardsForMatchedTeam = boardsForMatchedTeam
552
552
. filter ( ( board : IFeedbackBoardDocument ) => FeedbackBoardDocumentHelper . filter ( board , this . state . userTeams . map ( t => t . id ) , this . state . currentUserId ) )
553
553
. sort ( ( b1 , b2 ) => FeedbackBoardDocumentHelper . sort ( b1 , b2 ) ) ;
554
- console . log ( { location : "initializeFeedbackBoard - 2 " , boardsForMatchedTeam } ) ;
554
+ console . log ( { location : "initializeFeedbackBoard - 40 " , boardsForMatchedTeam } ) ;
555
555
}
556
556
557
557
const queryParamTeamAndDefaultBoardState = {
0 commit comments