Skip to content

Commit

Permalink
fix percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
nicele08 committed Aug 26, 2024
1 parent 7d9ba95 commit 9d49bea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/admin/AdminDashboardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const AdminDashboardPage = () => {
<span className="font-medium text-[#3D576F]">
{' '}
{(
stat.count_annotations_by_linguists /
(stat.count_annotations_by_linguists * 100) /
stat.count_messages
).toFixed(2)}
%
Expand Down Expand Up @@ -112,7 +112,7 @@ const AdminDashboardPage = () => {
<span className="font-medium text-[#3D576F]">
{' '}
{(
stat.count_annotations_by_health_workers /
(stat.count_annotations_by_health_workers * 100) /
stat.count_chats
).toFixed(2)}
%
Expand Down Expand Up @@ -142,7 +142,7 @@ const AdminDashboardPage = () => {
<span className="font-medium text-[#3D576F]">
{' '}
{(
stat.count_annotations_by_voice_annotators /
(stat.count_annotations_by_voice_annotators * 100) /
stat.count_messages
).toFixed(2)}
%
Expand Down

0 comments on commit 9d49bea

Please sign in to comment.