fix import type

This commit is contained in:
vchikalkin 2025-02-11 18:27:00 +03:00
parent c2967a867c
commit f2c288b455
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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