Skip to content

Commit

Permalink
style: 馃拕 fixed percentage in response usage progress circle
Browse files Browse the repository at this point in the history
  • Loading branch information
growupanand committed Feb 14, 2024
1 parent faafcbf commit 129477a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function ResponseUsageCard({ organizationId }: Readonly<Props>) {
if (data) {
const usage = data;
const maximum = formSubmissionLimit;
const usagePercentage = (usage / maximum) * 100;
const usagePercentage = Math.round((usage / maximum) * 100);

return (
<Card>
Expand Down

0 comments on commit 129477a

Please sign in to comment.