From 70f690658700a9ac152e13215901e537fcd9b65d Mon Sep 17 00:00:00 2001 From: Sean Prashad Date: Sat, 26 Dec 2020 13:21:20 -0500 Subject: [PATCH] Correct total completed question calculation --- src/components/Table/index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/Table/index.js b/src/components/Table/index.js index 723b02cd..15a12c1e 100644 --- a/src/components/Table/index.js +++ b/src/components/Table/index.js @@ -95,7 +95,11 @@ const Table = () => { totalDifficultyCount.Medium + totalDifficultyCount.Hard} total questions`} > - Total: {difficultyCount.Easy}/ + Total:{' '} + {difficultyCount.Easy + + difficultyCount.Medium + + difficultyCount.Hard} + / {totalDifficultyCount.Easy + totalDifficultyCount.Medium + totalDifficultyCount.Hard}