Skip to content

Commit e88be08

Browse files
committed
fix: hide post mortem
1 parent 9d35c83 commit e88be08

File tree

1 file changed

+1
-1
lines changed
  • src/shared/components/challenge-detail/Header

1 file changed

+1
-1
lines changed

src/shared/components/challenge-detail/Header/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default function ChallengeHeader(props) {
8080

8181
const tags = challenge.tags || [];
8282

83-
const allPhases = challenge.phases || [];
83+
const allPhases = _.filter(challenge.phases || [], p => p.name !== 'Post-Mortem');
8484
const sortedAllPhases = _.cloneDeep(allPhases)
8585
.sort((a, b) => moment(phaseEndDate(a)).diff(phaseEndDate(b)));
8686

0 commit comments

Comments
 (0)