diff --git a/packages/client/components/MeetingControlBar.tsx b/packages/client/components/MeetingControlBar.tsx index 2e25542b810..9453836abb7 100644 --- a/packages/client/components/MeetingControlBar.tsx +++ b/packages/client/components/MeetingControlBar.tsx @@ -57,7 +57,8 @@ const DEFAULT_TIME_LIMIT = { vote: 3, discuss: 5, ESTIMATE: 5, - SCOPE: 3 + SCOPE: 3, + TEAM_HEALTH: 1 } as Record interface Props { diff --git a/packages/client/components/TeamHealth.tsx b/packages/client/components/TeamHealth.tsx index 8f7651cd099..6c62b85061f 100644 --- a/packages/client/components/TeamHealth.tsx +++ b/packages/client/components/TeamHealth.tsx @@ -18,6 +18,7 @@ import * as RadioGroup from '@radix-ui/react-radio-group' import clsx from 'clsx' import RaisedButton from './RaisedButton' import getTeamHealthVoteColor from '../utils/getTeamHealthVoteColor' +import StageTimerDisplay from './StageTimerDisplay' interface Props { avatarGroup: ReactElement @@ -32,6 +33,8 @@ const TeamHealth = (props: Props) => { const meeting = useFragment( graphql` fragment TeamHealth_meeting on NewMeeting { + ...StageTimerDisplay_meeting + ...StageTimerControl_meeting id endedAt showSidebar @@ -83,6 +86,7 @@ const TeamHealth = (props: Props) => { {phaseLabelLookup.TEAM_HEALTH} +
{question}
{isRevealed && votes ? (