From 7d690c546b74dd278f6c3a7f73d014cad8cb1524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Thu, 22 Jan 2026 20:41:19 +0400 Subject: [PATCH] Fix type imports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- apps/console/src/components/form/PeopleMultiSelectField.tsx | 2 +- apps/console/src/components/form/VendorsMultiSelectField.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/console/src/components/form/PeopleMultiSelectField.tsx b/apps/console/src/components/form/PeopleMultiSelectField.tsx index 09b65cd44..0f87b9992 100644 --- a/apps/console/src/components/form/PeopleMultiSelectField.tsx +++ b/apps/console/src/components/form/PeopleMultiSelectField.tsx @@ -1,7 +1,7 @@ import { useTranslate } from "@probo/i18n"; import { Avatar, Badge, Button, Field, IconCrossLargeX, Option, Select } from "@probo/ui"; import { type ComponentProps, Suspense, useState } from "react"; -import { type Control, Controller, type FieldValues, Path } from "react-hook-form"; +import { type Control, Controller, type FieldValues, type Path } from "react-hook-form"; import { usePeople } from "/hooks/graph/PeopleGraph.ts"; diff --git a/apps/console/src/components/form/VendorsMultiSelectField.tsx b/apps/console/src/components/form/VendorsMultiSelectField.tsx index 880e2cc34..f09e19c9b 100644 --- a/apps/console/src/components/form/VendorsMultiSelectField.tsx +++ b/apps/console/src/components/form/VendorsMultiSelectField.tsx @@ -2,7 +2,7 @@ import { faviconUrl } from "@probo/helpers"; import { useTranslate } from "@probo/i18n"; import { Avatar, Badge, Button, Field, IconCrossLargeX, Option, Select } from "@probo/ui"; import { type ComponentProps, Suspense, useState } from "react"; -import { type Control, Controller, type FieldValues, Path } from "react-hook-form"; +import { type Control, Controller, type FieldValues, type Path } from "react-hook-form"; import { useVendors } from "/hooks/graph/VendorGraph.ts";