Merge branch 'develop' into MED-49
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
|
||||
import { zodResolver } from '@hookform/resolvers/zod';
|
||||
import { useForm } from 'react-hook-form';
|
||||
import { Trans } from 'react-i18next';
|
||||
|
||||
import { Trans } from '@kit/ui/trans';
|
||||
import { useRevalidatePersonalAccountDataQuery } from '@kit/accounts/hooks/use-personal-account-data';
|
||||
import type { AccountWithParams } from '@kit/accounts/types/accounts';
|
||||
import { Button } from '@kit/ui/button';
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
import { zodResolver } from '@hookform/resolvers/zod';
|
||||
import { useForm } from 'react-hook-form';
|
||||
import { Trans } from 'react-i18next';
|
||||
|
||||
import { Trans } from '@kit/ui/trans';
|
||||
import { useRevalidatePersonalAccountDataQuery } from '@kit/accounts/hooks/use-personal-account-data';
|
||||
import type { AccountWithParams } from '@kit/accounts/types/accounts';
|
||||
import { Button } from '@kit/ui/button';
|
||||
|
||||
@@ -63,13 +63,13 @@ export const getAccountHealthDetailsFields = (
|
||||
return [
|
||||
{
|
||||
title: 'teams:healthDetails.women',
|
||||
value: `${femalePercentage}% (${numberOfFemaleMembers})`,
|
||||
value: `${femalePercentage.toFixed(0)}% (${numberOfFemaleMembers})`,
|
||||
Icon: User,
|
||||
iconBg: 'bg-success',
|
||||
},
|
||||
{
|
||||
title: 'teams:healthDetails.men',
|
||||
value: `${malePercentage}% (${numberOfMaleMembers})`,
|
||||
value: `${malePercentage.toFixed(0)}% (${numberOfMaleMembers})`,
|
||||
Icon: User,
|
||||
iconBg: 'bg-success',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user