Skip to content

Commit b99ccd3

Browse files
feat(*): replace name of manager components react lib
ref: MANAGER-14822 Signed-off-by: Alex Boungnaseng <alex.boungnaseng.ext@corp.ovh.com>
1 parent 0fcb249 commit b99ccd3

File tree

228 files changed

+443
-315
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+443
-315
lines changed

docs/docs/guide/manager-components.md

+3-3

packages/manager-components/CHANGELOG.md

+40-40

packages/manager-components/README.md

+1-1

packages/manager-components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@ovhcloud/manager-components",
2+
"name": "@ovhcloud/manager-react-components",
33
"private": true,
44
"version": "1.26.0",
55
"main": "src/lib.ts",

packages/manager/apps/catalog/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@ovh-ux/manager-react-core-application": "^0.10.0",
2828
"@ovh-ux/manager-react-shell-client": "^0.7.0",
2929
"@ovh-ux/shell": "^3.7.0",
30-
"@ovhcloud/manager-components": "^1.26.0",
30+
"@ovhcloud/manager-react-components": "^1.26.0",
3131
"@ovhcloud/ods-common-core": "17.2.2",
3232
"@ovhcloud/ods-common-theming": "17.2.2",
3333
"@ovhcloud/ods-components": "17.2.2",

packages/manager/apps/catalog/src/components/Error/Errors.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { useLocation, useNavigate } from 'react-router-dom';
33
import { AxiosError } from 'axios';
4-
import { ErrorBanner, ErrorMessage } from '@ovhcloud/manager-components';
4+
import { ErrorBanner, ErrorMessage } from '@ovhcloud/manager-react-components';
55
import { useSendErrorTracking } from '@/utils/trackingError';
66

77
export interface ErrorObject {

packages/manager/apps/catalog/src/pages/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useEffect } from 'react';
22
import { useTranslation } from 'react-i18next';
33
import { useSearchParams } from 'react-router-dom';
44

5-
import { Card } from '@ovhcloud/manager-components';
5+
import { Card } from '@ovhcloud/manager-react-components';
66
import { OsdsText, OsdsDivider } from '@ovhcloud/ods-components/react';
77
import {
88
ODS_THEME_COLOR_INTENT,

packages/manager/apps/catalog/src/utils/trackingError.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import React from 'react';
22
import { ShellContext } from '@ovh-ux/manager-react-shell-client';
33
import { useLocation } from 'react-router-dom';
4-
import { ErrorMessage, TRACKING_LABELS } from '@ovhcloud/manager-components';
4+
import {
5+
ErrorMessage,
6+
TRACKING_LABELS,
7+
} from '@ovhcloud/manager-react-components';
58
import { ErrorObject } from '@/components/Error/Errors';
69

710
export function getTypology(error: ErrorMessage) {

packages/manager/apps/catalog/tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
content: [
66
'./src/**/*.{js,jsx,ts,tsx}',
77
path.join(
8-
path.dirname(require.resolve('@ovhcloud/manager-components')),
8+
path.dirname(require.resolve('@ovhcloud/manager-react-components')),
99
'**/*.{js,jsx,ts,tsx}',
1010
),
1111
],

packages/manager/apps/container/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@ovh-ux/request-tagger": "^0.3.0",
3737
"@ovh-ux/shell": "^3.7.0",
3838
"@ovh-ux/ui-kit": "^6.10.0",
39-
"@ovhcloud/manager-components": "^1.26.0",
39+
"@ovhcloud/manager-react-components": "^1.26.0",
4040
"@ovhcloud/ods-common-core": "17.2.2",
4141
"@ovhcloud/ods-common-theming": "17.2.2",
4242
"@ovhcloud/ods-components": "17.2.2",
@@ -93,4 +93,4 @@
9393
"EU",
9494
"US"
9595
]
96-
}
96+
}

packages/manager/apps/container/src/container/legacy/server-sidebar/universe/AccountSidebar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import dedicatedShopConfig from '../order/shop-config/dedicated';
99
import OrderTrigger from '../order/OrderTrigger';
1010
import { ShopItem } from '../order/OrderPopupContent';
1111
import { features } from './DedicatedSidebar';
12-
import { useFeatureAvailability } from '@ovhcloud/manager-components';
12+
import { useFeatureAvailability } from '@ovhcloud/manager-react-components';
1313
import constants from '../../account-sidebar/UsefulLinks/constants';
1414

1515
const kycIndiaFeature = 'identity-documents';

packages/manager/apps/container/src/container/legacy/server-sidebar/universe/DedicatedSidebar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import getIcon from './GetIcon';
1111
import { OsdsIcon } from '@ovhcloud/ods-components/react';
1212
import { ODS_ICON_NAME, ODS_ICON_SIZE } from '@ovhcloud/ods-components';
1313
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';
14-
import { useFeatureAvailability } from '@ovhcloud/manager-components';
14+
import { useFeatureAvailability } from '@ovhcloud/manager-react-components';
1515

1616
export const features = [
1717
'dedicated-server',

packages/manager/apps/container/src/container/legacy/server-sidebar/universe/HostedPrivateCloudSidebar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import getIcon from './GetIcon';
1111
import { OsdsIcon } from '@ovhcloud/ods-components/react';
1212
import { ODS_ICON_NAME, ODS_ICON_SIZE } from '@ovhcloud/ods-components';
1313
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';
14-
import { useFeatureAvailability } from '@ovhcloud/manager-components';
14+
import { useFeatureAvailability } from '@ovhcloud/manager-react-components';
1515

1616
const features = [
1717
'dedicated-cloud',

packages/manager/apps/container/src/container/legacy/server-sidebar/universe/TelecomSidebar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import telecomShopConfig from '../order/shop-config/telecom';
1212
import OrderTrigger from '../order/OrderTrigger';
1313
import { ShopItem } from '../order/OrderPopupContent';
1414
import getIcon from './GetIcon';
15-
import { useFeatureAvailability } from '@ovhcloud/manager-components';
15+
import { useFeatureAvailability } from '@ovhcloud/manager-react-components';
1616

1717

1818

packages/manager/apps/container/src/container/legacy/server-sidebar/universe/WebSidebar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import OrderTrigger from '../order/OrderTrigger';
88
import webShopConfig from '../order/shop-config/web';
99
import { ShopItem } from '../order/OrderPopupContent';
1010
import getIcon from './GetIcon';
11-
import { useFeatureAvailability } from '@ovhcloud/manager-components';
11+
import { useFeatureAvailability } from '@ovhcloud/manager-react-components';
1212

1313
export const webFeatures = [
1414
'web:domains',

packages/manager/apps/container/src/container/legacy/server-sidebar/universe/public-cloud/PublicCloudSidebar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useCallback, useEffect, useMemo, useState } from 'react';
22
import { useLocation } from 'react-router-dom';
33
import { useTranslation } from 'react-i18next';
4-
import { useFeatureAvailability } from '@ovhcloud/manager-components';
4+
import { useFeatureAvailability } from '@ovhcloud/manager-react-components';
55
import { useLegacyContainer } from '@/container/legacy/context';
66
import { useShell } from '@/context';
77
import useProjects from './useProjects';

packages/manager/apps/container/src/container/mfa-enrollment/MfaEnrollment.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
ODS_ICON_SIZE,
1818
} from '@ovhcloud/ods-components';
1919
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';
20-
import { Subtitle } from '@ovhcloud/manager-components';
20+
import { Subtitle } from '@ovhcloud/manager-react-components';
2121

2222
type MfaEnrollmentProps = {
2323
forced?: boolean;

packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/Content.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { useShell } from '@/context';
99
import useProductNavReshuffle from '@/core/product-nav-reshuffle';
1010
import { OsdsChip } from '@ovhcloud/ods-components/react';
1111
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';
12-
import { fetchFeatureAvailabilityData } from '@ovhcloud/manager-components';
12+
import { fetchFeatureAvailabilityData } from '@ovhcloud/manager-react-components';
1313

1414
import { useReket } from '@ovh-ux/ovh-reket';
1515
import { UserLink } from './UserLink';

packages/manager/apps/container/src/container/nav-reshuffle/sidebar/Assistance.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
ODS_ICON_SIZE,
1313
} from '@ovhcloud/ods-components';
1414
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';
15-
import { fetchFeatureAvailabilityData } from '@ovhcloud/manager-components';
15+
import { fetchFeatureAvailabilityData } from '@ovhcloud/manager-react-components';
1616

1717
const AssistanceSidebar: React.FC = (): JSX.Element => {
1818
const { t } = useTranslation('sidebar');

packages/manager/apps/container/src/container/nav-reshuffle/sidebar/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
} from './utils';
2525
import { Node } from './navigation-tree/node';
2626
import useProductNavReshuffle from '@/core/product-nav-reshuffle';
27-
import { fetchFeatureAvailabilityData } from '@ovhcloud/manager-components';
27+
import { fetchFeatureAvailabilityData } from '@ovhcloud/manager-react-components';
2828

2929
interface ServicesCountError {
3030
url: string;

packages/manager/apps/container/src/cookie-policy/CookiePolicy.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { User } from '@ovh-ux/manager-config';
66
import ovhCloudLogo from './assets/logo-ovhcloud.png';
77
import links from './links';
88
import { useApplication } from '@/context';
9-
import { Subtitle, Links, LinksProps } from '@ovhcloud/manager-components';
9+
import { Subtitle, Links, LinksProps } from '@ovhcloud/manager-react-components';
1010
import {
1111
OsdsButton,
1212
OsdsModal,

packages/manager/apps/container/src/core/container/ContainerProvider.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useEffect, useState } from 'react';
22
import { useReket } from '@ovh-ux/ovh-reket';
33
import { Application } from '@ovh-ux/manager-config';
4-
import {fetchFeatureAvailabilityData} from '@ovhcloud/manager-components'
4+
import {fetchFeatureAvailabilityData} from '@ovhcloud/manager-react-components'
55
import {
66
getBetaAvailabilityFromLocalStorage,
77
setBetaAvailabilityToLocalStorage,

packages/manager/apps/container/src/sso-auth-modal/SSOAuthModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
ODS_CHIP_SIZE,
2525
} from '@ovhcloud/ods-components';
2626
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';
27-
import { Subtitle } from '@ovhcloud/manager-components';
27+
import { Subtitle } from '@ovhcloud/manager-react-components';
2828
import {
2929
connectedToDisconnected,
3030
connectedToOther,

packages/manager/apps/key-management-service/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@ovh-ux/manager-react-core-application": "^0.10.0",
2929
"@ovh-ux/manager-react-shell-client": "^0.7.0",
3030
"@ovh-ux/manager-tailwind-config": "*",
31-
"@ovhcloud/manager-components": "^1.26.0",
31+
"@ovhcloud/manager-react-components": "^1.26.0",
3232
"@ovhcloud/ods-common-core": "17.2.2",
3333
"@ovhcloud/ods-common-theming": "17.2.2",
3434
"@ovhcloud/ods-components": "17.2.2",

packages/manager/apps/key-management-service/src/components/Error/Error.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { useShell } from '@ovh-ux/manager-react-shell-client';
44
import {
55
ErrorMessage,
66
TRACKING_LABELS,
7-
} from '@ovhcloud/manager-components/src/components/';
8-
import { ErrorBanner } from '@ovhcloud/manager-components';
7+
} from '@ovhcloud/manager-react-components/src/components/';
8+
import { ErrorBanner } from '@ovhcloud/manager-react-components';
99

1010
interface ErrorObject {
1111
[key: string]: any;

packages/manager/apps/key-management-service/src/components/Guide/KmsGuidesHeader.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { useTranslation } from 'react-i18next';
33
import { OdsHTMLAnchorElementTarget } from '@ovhcloud/ods-common-core';
4-
import { GuideButton } from '@ovhcloud/manager-components';
4+
import { GuideButton } from '@ovhcloud/manager-react-components';
55
import useGuideUtils from '@/hooks/guide/useGuideUtils';
66

77
export default function KmsGuidesHeader() {

packages/manager/apps/key-management-service/src/components/Listing/ListingCells.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
DataGridClipboardCell,
44
DataGridTextCell,
55
useNotifications,
6-
} from '@ovhcloud/manager-components';
6+
} from '@ovhcloud/manager-react-components';
77
import { OsdsLink } from '@ovhcloud/ods-components/react';
88
import { ODS_TEXT_COLOR_INTENT } from '@ovhcloud/ods-components';
99
import { useNavigate } from 'react-router-dom';

packages/manager/apps/key-management-service/src/components/layout-helpers/Create/RegionSelector.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
} from '@ovhcloud/ods-common-theming';
2626
import { ShellContext } from '@ovh-ux/manager-react-shell-client';
2727
import { useNavigate } from 'react-router-dom';
28-
import { ErrorBanner } from '@ovhcloud/manager-components';
28+
import { ErrorBanner } from '@ovhcloud/manager-react-components';
2929
import { useOrderCatalogOKMS } from '@/data/hooks/useOrderCatalogOKMS';
3030
import { ROUTES_URLS } from '@/routes/routes.constants';
3131

packages/manager/apps/key-management-service/src/components/layout-helpers/Dashboard/GeneralInformationsTiles/BillingInformationsTile.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ShellContext } from '@ovh-ux/manager-react-shell-client';
2-
import { ActionMenu, ActionMenuItem } from '@ovhcloud/manager-components';
2+
import { ActionMenu, ActionMenuItem } from '@ovhcloud/manager-react-components';
33
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';
44
import {
55
ODS_ICON_NAME,

packages/manager/apps/key-management-service/src/components/layout-helpers/Listing/TableContainer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
flexRender,
1111
} from '@tanstack/react-table';
1212
import { useNavigate } from 'react-router-dom';
13-
import { Table } from '@ovhcloud/manager-components';
13+
import { Table } from '@ovhcloud/manager-react-components';
1414
import { OsdsText, OsdsLink } from '@ovhcloud/ods-components/react';
1515
import { ODS_TEXT_SIZE } from '@ovhcloud/ods-components/';
1616
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';

packages/manager/apps/key-management-service/src/components/menu/KmsActionMenu.component.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ActionMenu, ActionMenuItem } from '@ovhcloud/manager-components';
1+
import { ActionMenu, ActionMenuItem } from '@ovhcloud/manager-react-components';
22
import { ODS_THEME_COLOR_INTENT } from '@ovhcloud/ods-common-theming';
33
import React from 'react';
44
import { ODS_ICON_NAME } from '@ovhcloud/ods-components';

packages/manager/apps/key-management-service/src/data/api/okms.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ColumnSort } from '@ovhcloud/manager-components';
1+
import { ColumnSort } from '@ovhcloud/manager-react-components';
22
import {
33
fetchIcebergV2,
44
fetchIcebergV6,

packages/manager/apps/key-management-service/src/data/hooks/useTerminateOKms.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ApiError, ApiResponse } from '@ovh-ux/manager-core-api';
2-
import { useNotifications } from '@ovhcloud/manager-components';
2+
import { useNotifications } from '@ovhcloud/manager-react-components';
33
import { useMutation, useQueryClient } from '@tanstack/react-query';
44
import { useTranslation } from 'react-i18next';
55
import { getOkmsServicesResourceListQueryKey } from '../api/okms';

packages/manager/apps/key-management-service/src/pages/create/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
OsdsBreadcrumb,
66
} from '@ovhcloud/ods-components/react';
77

8-
import { Notifications } from '@ovhcloud/manager-components';
8+
import { Notifications } from '@ovhcloud/manager-react-components';
99
import {
1010
ODS_THEME_COLOR_INTENT,
1111
ODS_THEME_TYPOGRAPHY_SIZE,

packages/manager/apps/key-management-service/src/pages/dashboard/index.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ import {
66
OsdsDivider,
77
OsdsText,
88
} from '@ovhcloud/ods-components/react';
9-
import { Notifications, useNotifications } from '@ovhcloud/manager-components';
9+
import {
10+
Notifications,
11+
useNotifications,
12+
} from '@ovhcloud/manager-react-components';
1013
import {
1114
ODS_THEME_COLOR_INTENT,
1215
ODS_THEME_TYPOGRAPHY_LEVEL,

packages/manager/apps/key-management-service/src/pages/listing/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
Notifications,
2626
useDatagridSearchParams,
2727
useNotifications,
28-
} from '@ovhcloud/manager-components';
28+
} from '@ovhcloud/manager-react-components';
2929
import { useOKMS } from '@/data/hooks/useOKMS';
3030
import { ROUTES_URLS } from '@/routes/routes.constants';
3131
import {

packages/manager/apps/key-management-service/src/pages/onboarding/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { OnboardingLayout } from '@ovhcloud/manager-components';
1+
import { OnboardingLayout } from '@ovhcloud/manager-react-components';
22
import React from 'react';
33
import {
44
ODS_TEXT_LEVEL,

packages/manager/apps/key-management-service/src/types/okms.type.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ColumnSort } from '@ovhcloud/manager-components';
1+
import { ColumnSort } from '@ovhcloud/manager-react-components';
22

33
export type OKMS = {
44
id: string;

packages/manager/apps/key-management-service/tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
content: [
88
'./src/**/*.{js,jsx,ts,tsx}',
99
path.join(
10-
path.dirname(require.resolve('@ovhcloud/manager-components')),
10+
path.dirname(require.resolve('@ovhcloud/manager-react-components')),
1111
'**/*.{js,jsx,ts,tsx}',
1212
),
1313
],

packages/manager/apps/pci-block-storage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@ovh-ux/manager-react-shell-client": "^0.7.0",
2121
"@ovh-ux/manager-tailwind-config": "^0.2.0",
2222
"@ovh-ux/shell": "^3.7.0",
23-
"@ovhcloud/manager-components": "^1.26.0",
23+
"@ovhcloud/manager-react-components": "^1.26.0",
2424
"@ovhcloud/ods-common-core": "^17.2.2",
2525
"@ovhcloud/ods-common-stencil": "^17.2.2",
2626
"@ovhcloud/ods-common-theming": "^17.2.2",

packages/manager/apps/pci-block-storage/src/api/data/volume.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { v6 } from '@ovh-ux/manager-core-api';
2-
import { ColumnSort, PaginationState } from '@ovhcloud/manager-components';
2+
import {
3+
ColumnSort,
4+
PaginationState,
5+
} from '@ovhcloud/manager-react-components';
36
import { Instance } from '@/api/data/instance';
47

58
export type TVolume = {

packages/manager/apps/pci-block-storage/src/api/hooks/useCatalog.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useQuery } from '@tanstack/react-query';
2-
import { useMe } from '@ovhcloud/manager-components';
2+
import { useMe } from '@ovhcloud/manager-react-components';
33
import { getCatalog } from '@/api/data/catalog';
44

55
export const getCatalogQuery = (ovhSubsidiary: string) => ({

packages/manager/apps/pci-block-storage/src/api/hooks/useProjectsAvailableVolumes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useQuery } from '@tanstack/react-query';
2-
import { useMe } from '@ovhcloud/manager-components';
2+
import { useMe } from '@ovhcloud/manager-react-components';
33
import { getProjectsAvailableVolumes } from '@/api/data/availableVolumes';
44

55
export const getProjectsAvailableVolumesQuery = (

packages/manager/apps/pci-block-storage/src/api/hooks/useRegions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useTranslation } from 'react-i18next';
33
import {
44
getMacroRegion,
55
useTranslatedMicroRegions,
6-
} from '@ovhcloud/manager-components';
6+
} from '@ovhcloud/manager-react-components';
77
import { TRegion, getProjectRegions } from '@/api/data/regions';
88

99
export const useProjectRegions = (projectId: string) =>

0 commit comments

Comments
 (0)