Remove circular import

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-08-16 08:43:59 +04:00
parent 73b2a1467b
commit 210a05b54d
4 changed files with 7 additions and 4 deletions

View File

@@ -10,10 +10,11 @@ import {
Tbody,
Th,
IconChevronDown,
MeasureBadge,
IconTrashCan,
TrButton,
} from "@probo/ui";
import { MeasureBadge } from "@probo/ui/src/Molecules/Badge/MeasureBadge";
import { useTranslate } from "@probo/i18n";
import type { LinkedMeasuresCardFragment$key } from "./__generated__/LinkedMeasuresCardFragment.graphql";
import { useFragment } from "react-relay";

View File

@@ -12,7 +12,7 @@ import {
IconPencil,
IconTrashCan,
IconWarning,
MeasureBadge,
Option,
PageHeader,
PropertyRow,
@@ -22,6 +22,7 @@ import {
Tabs,
useConfirm,
} from "@probo/ui";
import { MeasureBadge } from "@probo/ui/src/Molecules/Badge/MeasureBadge";
import { useTranslate } from "@probo/i18n";
import {
ConnectionHandler,

View File

@@ -17,7 +17,7 @@ import {
IconPencil,
IconPlusLarge,
IconTrashCan,
MeasureBadge,
MeasureImplementation,
PageHeader,
Table,
@@ -29,6 +29,7 @@ import {
useConfirm,
useDialogRef,
} from "@probo/ui";
import { MeasureBadge } from "@probo/ui/src/Molecules/Badge/MeasureBadge";
import {
measuresQuery,
useDeleteMeasureMutation,

View File

@@ -1,5 +1,5 @@
import { getMeasureStateLabel } from "@probo/helpers";
import { Badge } from "@probo/ui";
import { Badge } from "../../Atoms/Badge/Badge";
import { useTranslate } from "@probo/i18n";
import type { ComponentProps } from "react";
import type { measureStates } from "@probo/helpers";