From f2c288b455af6cec0aeafbc9810ab0786cccdf67 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 11 Feb 2025 18:27:00 +0300 Subject: [PATCH] fix import type --- apps/web/components/profile/data-card.tsx | 2 +- apps/web/components/profile/links-card.tsx | 2 +- apps/web/components/profile/person-card.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/components/profile/data-card.tsx b/apps/web/components/profile/data-card.tsx index 1c05ad4..2c95f27 100644 --- a/apps/web/components/profile/data-card.tsx +++ b/apps/web/components/profile/data-card.tsx @@ -1,6 +1,6 @@ 'use client'; -import { type ProfileProps } from '../types'; import { CheckboxWithText, DataField, ProfileCardHeader } from './components'; +import { type ProfileProps } from './types'; import { useProfileMutation, useProfileQuery } from '@/hooks/profile'; import { Enum_Customer_Role as Role } from '@repo/graphql/types'; import { Button } from '@repo/ui/components/ui/button'; diff --git a/apps/web/components/profile/links-card.tsx b/apps/web/components/profile/links-card.tsx index 74a68c0..0a7aa63 100644 --- a/apps/web/components/profile/links-card.tsx +++ b/apps/web/components/profile/links-card.tsx @@ -1,7 +1,7 @@ /* eslint-disable canonical/id-match */ 'use client'; -import { type ProfileProps } from '../types'; import { LinkButton } from './components'; +import { type ProfileProps } from './types'; import { useProfileQuery } from '@/hooks/profile'; import { Enum_Customer_Role } from '@repo/graphql/types'; diff --git a/apps/web/components/profile/person-card.tsx b/apps/web/components/profile/person-card.tsx index f01ceb7..c406241 100644 --- a/apps/web/components/profile/person-card.tsx +++ b/apps/web/components/profile/person-card.tsx @@ -1,5 +1,5 @@ 'use client'; -import { type ProfileProps } from '../types'; +import { type ProfileProps } from './types'; import { useProfileQuery } from '@/hooks/profile'; import { Avatar, AvatarFallback, AvatarImage } from '@repo/ui/components/ui/avatar'; import { Card } from '@repo/ui/components/ui/card';