Maybe this helps I guess
This commit is contained in:
@@ -53,7 +53,7 @@ async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|||||||
{
|
{
|
||||||
solutions,
|
solutions,
|
||||||
score: {
|
score: {
|
||||||
correct: speakingReverseMarking[backendRequest.data.overall],
|
correct: speakingReverseMarking[backendRequest.data.overall || 0] || 0,
|
||||||
missing: 0,
|
missing: 0,
|
||||||
total: 100,
|
total: 100,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|||||||
{
|
{
|
||||||
solutions,
|
solutions,
|
||||||
score: {
|
score: {
|
||||||
correct: speakingReverseMarking[backendRequest.data.overall],
|
correct: speakingReverseMarking[backendRequest.data.overall || 0] || 0,
|
||||||
total: 100,
|
total: 100,
|
||||||
missing: 0,
|
missing: 0,
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user