Fix type imports

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-22 20:41:19 +04:00
parent c168be6de0
commit 7d690c546b
2 changed files with 2 additions and 2 deletions

View File

@@ -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";

View File

@@ -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";