Skip to content

Commit b51f94f

Browse files
committed
fix % completion
1 parent 3283979 commit b51f94f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/App.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function App() {
6161
}
6262
}
6363

64-
setProgress((totalTrue / totalFalse) * 100);
64+
setProgress((totalTrue / 4) / 36 * 100);
6565
};
6666

6767
const calculateProgressZombie = (localData) => {
@@ -79,7 +79,7 @@ function App() {
7979
}
8080
}
8181

82-
setProgressZombie((totalTrue / totalFalse) * 100);
82+
setProgressZombie((totalTrue / 4) / 36 * 100);
8383
}
8484

8585
const resetAllProgress = () => {

0 commit comments

Comments
 (0)