Skip to content

Commit

Permalink
Revise Emotion qustions
Browse files Browse the repository at this point in the history
  • Loading branch information
chunlaw committed Mar 2, 2024
1 parent 8db0184 commit 4df5a96
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/components/emotion/CheckIn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,26 +155,6 @@ const CheckIn = () => {
))}
</ToggleButtonGroup>
</Box>
<Box sx={questionContainerSx}>
<Typography variant="body1" alignSelf="flex-start" textAlign="start">
3. {t("What are you most grateful for in the past 24 hours?")}
</Typography>
<ToggleButtonGroup
size="large"
value={state.gratitudeObj}
onChange={(_, v) =>
setState((prev) => ({ ...prev, gratitudeObj: v }))
}
exclusive
sx={{ flexWrap: "wrap", mx: 1 }}
>
{CheckInOptions.gratitudeCnt.map((v, idx) => (
<ToggleButton value={v} key={`gratituteCnt-${idx}`}>
<Typography variant="h6">{v}</Typography>
</ToggleButton>
))}
</ToggleButtonGroup>
</Box>
<Button variant="outlined" disabled={!isDone} onClick={handleSubmit}>
OK
</Button>
Expand Down

0 comments on commit 4df5a96

Please sign in to comment.