Skip to content
This repository was archived by the owner on Dec 25, 2022. It is now read-only.

Commit a753556

Browse files
committed
Hot fix progress
1 parent 23f372c commit a753556

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Home/Home.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,8 @@ const Home = () => {
283283
(
284284
item.data.data.filter((item) => {
285285
return item.learned;
286-
}).length / item.data.data.length
287-
).toFixed(2) * 100;
286+
}).length * 100 / item.data.data.length
287+
).toFixed(2);
288288
return (
289289
<Table.Row key={item.id}>
290290
<Table.Cell>{item.id}</Table.Cell>

0 commit comments

Comments
 (0)