- {translate('v6y-authentication.title')}
-
- }
+ title={}
rememberMe={
- {translate('v6y-dependency-status-helps.titles.show')}
-
- }
+ title={}
queryOptions={{
resource: 'getDependencyStatusHelpDetailsByParams',
query: GetDependencyStatusHelpDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-dependency-status-helps/components/VitalityDependencyStatusHelpEditView.tsx b/v6y-apps/front-bo/src/features/v6y-dependency-status-helps/components/VitalityDependencyStatusHelpEditView.tsx
index c32239e0..2f301d5b 100644
--- a/v6y-apps/front-bo/src/features/v6y-dependency-status-helps/components/VitalityDependencyStatusHelpEditView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-dependency-status-helps/components/VitalityDependencyStatusHelpEditView.tsx
@@ -1,5 +1,5 @@
import { useParsed } from '@refinedev/core';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import {
@@ -18,11 +18,7 @@ export default function VitalityDependencyStatusHelpEditView() {
return (
- {translate('v6y-evolution-helps.titles.edit')}
-
- }
+ title={}
queryOptions={{
queryFormAdapter: dependencyStatusHelpCreateOrEditFormInAdapter,
query: GetDependencyStatusHelpDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-dependency-status-helps/components/VitalityDependencyStatusHelpListView.tsx b/v6y-apps/front-bo/src/features/v6y-dependency-status-helps/components/VitalityDependencyStatusHelpListView.tsx
index 0cf3c504..e5e0086b 100644
--- a/v6y-apps/front-bo/src/features/v6y-dependency-status-helps/components/VitalityDependencyStatusHelpListView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-dependency-status-helps/components/VitalityDependencyStatusHelpListView.tsx
@@ -1,8 +1,4 @@
-import VitalityTable from '../../../commons/components/VitalityTable';
-import {
- buildCommonTableColumns,
- buildCommonTableDataSource,
-} from '../../../commons/config/VitalityTableConfig';
+import RenderVitalityTable from '../../../commons/components/VitalityTable';
import { useTranslation } from '../../../infrastructure/adapters/translation/TranslationAdapter';
import RefineTableWrapper from '../../../infrastructure/components/RefineTableWrapper';
import GetDependencyStatusHelpListByPageAndParams from '../apis/getDependencyStatusHelpListByPageAndParams';
@@ -25,13 +21,14 @@ export default function VitalityDependencyStatusHelpListView() {
query: GetDependencyStatusHelpListByPageAndParams,
}}
renderTable={(dataSource) => (
-
)}
/>
diff --git a/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyCreateView.tsx b/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyCreateView.tsx
index 3e211f59..9f926f2d 100644
--- a/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyCreateView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyCreateView.tsx
@@ -1,4 +1,4 @@
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import {
@@ -14,11 +14,7 @@ export default function VitalityDeprecatedDependencyCreateView() {
return (
- {translate('v6y-deprecated-dependencies.titles.create')}
-
- }
+ title={}
createOptions={{
createFormAdapter: deprecatedDependencyCreateOrEditFormOutputAdapter,
createQuery: CreateOrEditDeprecatedDependency,
diff --git a/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyDetailsView.tsx b/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyDetailsView.tsx
index 51c177e0..e5a3c8dd 100644
--- a/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyDetailsView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyDetailsView.tsx
@@ -1,6 +1,6 @@
import { useParsed } from '@refinedev/core';
import { DeprecatedDependencyType } from '@v6y/core-logic/src';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import VitalityDetailsView from '../../../commons/components/VitalityDetailsView';
@@ -16,11 +16,7 @@ export default function VitalityDeprecatedDependencyDetailsView() {
return (
- {translate('v6y-audit-helps.titles.show')}
-
- }
+ title={}
queryOptions={{
resource: 'getDeprecatedDependencyDetailsByParams',
query: GetDeprecatedDependencyDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyEditView.tsx b/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyEditView.tsx
index 008c145a..76c25b6e 100644
--- a/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyEditView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyEditView.tsx
@@ -1,5 +1,5 @@
import { useParsed } from '@refinedev/core';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import {
@@ -18,11 +18,7 @@ export default function VitalityDeprecatedDependencyEditView() {
return (
- {translate('v6y-deprecated-dependencies.titles.edit')}
-
- }
+ title={}
queryOptions={{
queryFormAdapter: deprecatedDependencyCreateOrEditFormInAdapter,
query: GetDeprecatedDependencyDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyListView.tsx b/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyListView.tsx
index fe6d486c..73a3fbca 100644
--- a/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyListView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-deprecated-dependencies/components/VitalityDeprecatedDependencyListView.tsx
@@ -1,8 +1,4 @@
-import VitalityTable from '../../../commons/components/VitalityTable';
-import {
- buildCommonTableColumns,
- buildCommonTableDataSource,
-} from '../../../commons/config/VitalityTableConfig';
+import RenderVitalityTable from '../../../commons/components/VitalityTable';
import { useTranslation } from '../../../infrastructure/adapters/translation/TranslationAdapter';
import RefineTableWrapper from '../../../infrastructure/components/RefineTableWrapper';
import DeleteDeprecatedDependency from '../apis/deleteDeprecatedDependency';
@@ -26,9 +22,10 @@ export default function VitalityDeprecatedDependencyListView() {
query: GetDeprecatedDependencyListByPageAndParams,
}}
renderTable={(dataSource) => (
-
)}
/>
diff --git a/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpDetailsView.tsx b/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpDetailsView.tsx
index b7036948..04340c35 100644
--- a/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpDetailsView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpDetailsView.tsx
@@ -1,6 +1,6 @@
import { useParsed } from '@refinedev/core';
import { EvolutionHelpType } from '@v6y/core-logic';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import VitalityDetailsView from '../../../commons/components/VitalityDetailsView';
@@ -16,11 +16,7 @@ export default function VitalityEvolutionHelpDetailsView() {
return (
- {translate('v6y-evolution-helps.titles.show')}
-
- }
+ title={}
queryOptions={{
resource: 'getEvolutionHelpDetailsByParams',
query: GetEvolutionHelpDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpEditView.tsx b/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpEditView.tsx
index 0890c45a..05638a0e 100644
--- a/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpEditView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpEditView.tsx
@@ -1,6 +1,6 @@
import { useParsed } from '@refinedev/core';
import { EvolutionHelpType } from '@v6y/core-logic';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import {
@@ -20,11 +20,7 @@ export default function VitalityEvolutionHelpEditView() {
return (
- {translate('v6y-evolution-helps.titles.edit')}
-
- }
+ title={}
queryOptions={{
queryFormAdapter: evolutionHelpCreateOrEditFormInAdapter,
query: GetEvolutionHelpDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpListView.tsx b/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpListView.tsx
index 55dbcdb9..d223bd2f 100644
--- a/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpListView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-evolution-helps/components/VitalityEvolutionHelpListView.tsx
@@ -1,8 +1,4 @@
-import VitalityTable from '../../../commons/components/VitalityTable';
-import {
- buildCommonTableColumns,
- buildCommonTableDataSource,
-} from '../../../commons/config/VitalityTableConfig';
+import RenderVitalityTable from '../../../commons/components/VitalityTable';
import { useTranslation } from '../../../infrastructure/adapters/translation/TranslationAdapter';
import RefineTableWrapper from '../../../infrastructure/components/RefineTableWrapper';
import GetEvolutionHelpListByPageAndParams from '../apis/getEvolutionHelpListByPageAndParams';
@@ -25,13 +21,14 @@ export default function VitalityEvolutionHelpListView() {
query: GetEvolutionHelpListByPageAndParams,
}}
renderTable={(dataSource) => (
-
)}
/>
diff --git a/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqCreateView.tsx b/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqCreateView.tsx
index 2f519d17..84fecac1 100644
--- a/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqCreateView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqCreateView.tsx
@@ -1,4 +1,4 @@
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import {
@@ -14,9 +14,7 @@ export default function VitalityFaqCreateView() {
return (
{translate('v6y-faqs.titles.create')}
- }
+ title={}
createOptions={{
createFormAdapter: faqCreateOrEditFormOutputAdapter,
createQuery: CreateOrEditFaq,
diff --git a/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqDetailsView.tsx b/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqDetailsView.tsx
index 60e84f3e..d504bc4c 100644
--- a/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqDetailsView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqDetailsView.tsx
@@ -1,6 +1,6 @@
import { useParsed } from '@refinedev/core';
import { FaqType } from '@v6y/core-logic';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import VitalityDetailsView from '../../../commons/components/VitalityDetailsView';
@@ -16,9 +16,7 @@ export default function VitalityFaqDetailsView() {
return (
{translate('v6y-faqs.titles.show')}
- }
+ title={}
queryOptions={{
resource: 'getFaqDetailsByParams',
query: GetFaqDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqEditView.tsx b/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqEditView.tsx
index ef08ef3f..05ca0907 100644
--- a/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqEditView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqEditView.tsx
@@ -1,5 +1,5 @@
import { useParsed } from '@refinedev/core';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import {
@@ -18,9 +18,7 @@ export default function VitalityFaqEditView() {
return (
{translate('v6y-faqs.titles.edit')}
- }
+ title={}
queryOptions={{
queryFormAdapter: faqCreateOrEditFormInAdapter,
query: GetFaqDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqListView.tsx b/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqListView.tsx
index dc46bd02..c22c0307 100644
--- a/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqListView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-faqs/components/VitalityFaqListView.tsx
@@ -1,8 +1,4 @@
-import VitalityTable from '../../../commons/components/VitalityTable';
-import {
- buildCommonTableColumns,
- buildCommonTableDataSource,
-} from '../../../commons/config/VitalityTableConfig';
+import RenderVitalityTable from '../../../commons/components/VitalityTable';
import { useTranslation } from '../../../infrastructure/adapters/translation/TranslationAdapter';
import RefineTableWrapper from '../../../infrastructure/components/RefineTableWrapper';
import DeleteFaq from '../apis/deleteFaq';
@@ -26,9 +22,10 @@ export default function VitalityFaqListView() {
query: GetFaqListByPageAndParams,
}}
renderTable={(dataSource) => (
-
)}
/>
diff --git a/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationCreateView.tsx b/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationCreateView.tsx
index e9454b61..58d3752e 100644
--- a/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationCreateView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationCreateView.tsx
@@ -1,4 +1,4 @@
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import {
@@ -14,11 +14,7 @@ export default function VitalityNotificationCreateView() {
return (
- {translate('v6y-notifications.titles.create')}
-
- }
+ title={}
createOptions={{
createFormAdapter: notificationCreateOrEditFormOutputAdapter as (
data: unknown,
diff --git a/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationDetailsView.tsx b/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationDetailsView.tsx
index b69fd5d0..a539094c 100644
--- a/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationDetailsView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationDetailsView.tsx
@@ -1,6 +1,6 @@
import { useParsed } from '@refinedev/core';
import { NotificationType } from '@v6y/core-logic/src';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import VitalityDetailsView from '../../../commons/components/VitalityDetailsView';
@@ -16,11 +16,7 @@ export default function VitalityNotificationDetailsView() {
return (
- {translate('v6y-notifications.titles.show')}
-
- }
+ title={}
queryOptions={{
resource: 'getNotificationDetailsByParams',
query: GetNotificationDetailsByParams,
diff --git a/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationEditView.tsx b/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationEditView.tsx
index 2aeebf87..d6cd3e85 100644
--- a/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationEditView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationEditView.tsx
@@ -1,5 +1,5 @@
import { useParsed } from '@refinedev/core';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import * as React from 'react';
import {
@@ -18,11 +18,7 @@ export default function VitalityNotificationEditView() {
return (
- {translate('v6y-notifications.titles.edit')}
-
- }
+ title={}
queryOptions={{
queryFormAdapter: notificationCreateOrEditFormInAdapter as (
data: unknown,
diff --git a/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationListView.tsx b/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationListView.tsx
index 4334c3e8..1fa54dc2 100644
--- a/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationListView.tsx
+++ b/v6y-apps/front-bo/src/features/v6y-notifications/components/VitalityNotificationListView.tsx
@@ -1,8 +1,4 @@
-import VitalityTable from '../../../commons/components/VitalityTable';
-import {
- buildCommonTableColumns,
- buildCommonTableDataSource,
-} from '../../../commons/config/VitalityTableConfig';
+import RenderVitalityTable from '../../../commons/components/VitalityTable';
import { useTranslation } from '../../../infrastructure/adapters/translation/TranslationAdapter';
import RefineTableWrapper from '../../../infrastructure/components/RefineTableWrapper';
import DeleteNotification from '../apis/deleteNotification';
@@ -26,9 +22,10 @@ export default function VitalityNotificationListView() {
query: GetNotificationListByPageAndParams,
}}
renderTable={(dataSource) => (
-
)}
/>
diff --git a/v6y-apps/front-bo/src/infrastructure/components/RefineTableWrapper.tsx b/v6y-apps/front-bo/src/infrastructure/components/RefineTableWrapper.tsx
index e0a3b9db..74d2c7c6 100644
--- a/v6y-apps/front-bo/src/infrastructure/components/RefineTableWrapper.tsx
+++ b/v6y-apps/front-bo/src/infrastructure/components/RefineTableWrapper.tsx
@@ -1,5 +1,5 @@
import { List, RefreshButton, useTable } from '@refinedev/antd';
-import { Typography } from 'antd';
+import { VitalityTitle } from '@v6y/shared-ui';
import { ReactNode } from 'react';
import VitalityLoader from '../../commons/components/VitalityLoader';
@@ -32,7 +32,7 @@ export default function RefineTableWrapper({
return (
- {title}
+
(
diff --git a/v6y-apps/front/src/commons/components/VitalityEmptyView.tsx b/v6y-apps/front/src/commons/components/VitalityEmptyView.tsx
index f0110a64..e92b8ea7 100644
--- a/v6y-apps/front/src/commons/components/VitalityEmptyView.tsx
+++ b/v6y-apps/front/src/commons/components/VitalityEmptyView.tsx
@@ -1,14 +1,12 @@
-import { Empty, Typography } from 'antd';
+import { VitalityText } from '@v6y/shared-ui';
+import { Empty } from 'antd';
+import * as React from 'react';
import VitalityTerms from '../config/VitalityTerms';
const VitalityEmptyView = ({ message }: { message?: string }) => (
- {message || VitalityTerms.VITALITY_EMPTY_DATA_MESSAGE}
-
- }
+ description={}
/>
);
diff --git a/v6y-apps/front/src/commons/components/VitalityLinks.tsx b/v6y-apps/front/src/commons/components/VitalityLinks.tsx
index 674a0e33..f910a8b3 100644
--- a/v6y-apps/front/src/commons/components/VitalityLinks.tsx
+++ b/v6y-apps/front/src/commons/components/VitalityLinks.tsx
@@ -1,6 +1,8 @@
import { LinkType } from '@v6y/core-logic';
-import { Col, Row, Typography } from 'antd';
+import { VitalityText } from '@v6y/shared-ui';
+import { Col, Row } from 'antd';
import Link from 'next/link';
+import * as React from 'react';
import { VitalityLinksProps } from '../types/VitalityLinksProps';
@@ -32,7 +34,7 @@ const VitalityLinks = ({ links, align }: VitalityLinksProps) => {
rel="noopener noreferrer"
style={{ textDecoration: 'underline' }}
>
- {link.label}
+
)}
diff --git a/v6y-apps/front/src/commons/components/VitalityPaginatedList.tsx b/v6y-apps/front/src/commons/components/VitalityPaginatedList.tsx
index 5bda65aa..b5bbb5fc 100644
--- a/v6y-apps/front/src/commons/components/VitalityPaginatedList.tsx
+++ b/v6y-apps/front/src/commons/components/VitalityPaginatedList.tsx
@@ -1,4 +1,6 @@
-import { List, Typography } from 'antd';
+import { VitalityText } from '@v6y/shared-ui';
+import { List } from 'antd';
+import * as React from 'react';
import { VitalityListProps } from '../types/VitalityListProps';
@@ -26,9 +28,7 @@ const VitalityPaginatedList = ({
renderItem={renderItem}
header={header}
footer={
- showFooter ? (
- {`Total: ${dataSource?.length || 0}`}
- ) : null
+ showFooter ? : null
}
style={{
...(style || {}),
diff --git a/v6y-apps/front/src/commons/components/VitalitySearchBar.tsx b/v6y-apps/front/src/commons/components/VitalitySearchBar.tsx
index 18129969..6fc54a10 100644
--- a/v6y-apps/front/src/commons/components/VitalitySearchBar.tsx
+++ b/v6y-apps/front/src/commons/components/VitalitySearchBar.tsx
@@ -1,6 +1,7 @@
'use client';
-import { Col, Form, Input, Row, Typography } from 'antd';
+import { VitalityText } from '@v6y/shared-ui';
+import { Col, Form, Input, Row } from 'antd';
import * as React from 'react';
import useNavigationAdapter from '../../infrastructure/adapters/navigation/useNavigationAdapter';
@@ -36,8 +37,8 @@ const VitalitySearchBar = ({ helper, label, status, placeholder }: VitalitySearc
{label}}
- help={{helper}}
+ label={}
+ help={}
initialValue={searchText}
>
)}
- {title || ''}
+
}
>
diff --git a/v6y-apps/front/src/commons/components/VitalitySelectGrouperView.tsx b/v6y-apps/front/src/commons/components/VitalitySelectGrouperView.tsx
index 1c90388d..ec466bdc 100644
--- a/v6y-apps/front/src/commons/components/VitalitySelectGrouperView.tsx
+++ b/v6y-apps/front/src/commons/components/VitalitySelectGrouperView.tsx
@@ -1,4 +1,5 @@
-import { Col, Form, Row, Select, Typography } from 'antd';
+import { VitalityText } from '@v6y/shared-ui';
+import { Col, Form, Row, Select } from 'antd';
import * as React from 'react';
import { useEffect } from 'react';
@@ -62,8 +63,8 @@ const VitalitySelectGrouperView = ({
>
{label}}
- help={{helper}}
+ label={}
+ help={}
>