|
@@ -1,5 +1,4 @@
|
1
|
1
|
import * as React from 'react';
|
2
|
|
-
|
3
|
2
|
import { Remove as RemoveIcon, Add as AddIcon } from '@mui/icons-material';
|
4
|
3
|
import {
|
5
|
4
|
Card,CardContent,Avatar,Checkbox,List,Tooltip,Fade,
|
|
@@ -60,7 +59,6 @@ function CheckboxesGroup(props) {
|
60
|
59
|
B: resp[index] ? resp[index].B : 0
|
61
|
60
|
}
|
62
|
61
|
}
|
63
|
|
- // let final = Object.assign(resp,temp);
|
64
|
62
|
dispatch(setResponse(temp))
|
65
|
63
|
}
|
66
|
64
|
};
|
|
@@ -75,7 +73,6 @@ function CheckboxesGroup(props) {
|
75
|
73
|
A: resp[index] ? resp[index].A : 0
|
76
|
74
|
}
|
77
|
75
|
}
|
78
|
|
- // let final = Object.assign(resp,temp)
|
79
|
76
|
dispatch(setResponse(temp))
|
80
|
77
|
}
|
81
|
78
|
};
|
|
@@ -84,9 +81,7 @@ function CheckboxesGroup(props) {
|
84
|
81
|
<List sx={{ width: '100%', bgcolor: 'background.paper' }}>
|
85
|
82
|
|
86
|
83
|
{quiz.map((value) => {
|
87
|
|
- // console.log("QUIZ VALUE: ", value)
|
88
|
84
|
const labelId = `checkbox-list-label-${value.id}`;
|
89
|
|
-
|
90
|
85
|
return (
|
91
|
86
|
<ListItem key={value.id}>
|
92
|
87
|
<ListItemButton dense>
|