We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99a2d8b commit 8118bfcCopy full SHA for 8118bfc
src/modules/common/LikertScale.tsx
@@ -22,9 +22,6 @@ const LikertRating = styled(Rating)(({ theme }) => ({
22
'& .MuiRating-iconFilled': {
23
color: theme.palette.primary.main,
24
},
25
- '& .MuiRating-iconHover': {
26
- color: theme.palette.primary.dark,
27
- },
28
}));
29
30
const Label = styled(Typography)(() => ({
@@ -61,7 +58,7 @@ const LikertScale = (props: LikertScaleProps): JSX.Element => {
61
58
</Label>
62
59
<LikertRating
63
60
name="likert-rating"
64
- value={value ?? Math.ceil(levels / 2)}
+ value={value ?? 0}
65
precision={1}
66
icon={<RadioButtonCheckedIcon fontSize="inherit" />}
67
emptyIcon={<RadioButtonUncheckedIcon fontSize="inherit" />}
0 commit comments