Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit faa0472

Browse filesBrowse files
author
Sean Prashad
authored
Correct total completed question calculation (seanprashad#70)
1 parent 57b8940 commit faa0472
Copy full SHA for faa0472

File tree

Expand file treeCollapse file tree

1 file changed

+5
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+5
-1
lines changed

‎src/components/Table/index.js

Copy file name to clipboardExpand all lines: src/components/Table/index.js
+5-1Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,11 @@ const Table = () => {
9595
totalDifficultyCount.Medium +
9696
totalDifficultyCount.Hard} total questions`}
9797
>
98-
Total: {difficultyCount.Easy}/
98+
Total:{' '}
99+
{difficultyCount.Easy +
100+
difficultyCount.Medium +
101+
difficultyCount.Hard}
102+
/
99103
{totalDifficultyCount.Easy +
100104
totalDifficultyCount.Medium +
101105
totalDifficultyCount.Hard}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.