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';