From 64a7421d7cbb8c9eeecd8546d57555659150ff1a Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Thu, 10 Jul 2025 14:39:34 +0300 Subject: [PATCH] refactor(profile): comment out change role feature --- apps/web/components/profile/data-card/index.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/web/components/profile/data-card/index.tsx b/apps/web/components/profile/data-card/index.tsx index 1aae939..18d74d0 100644 --- a/apps/web/components/profile/data-card/index.tsx +++ b/apps/web/components/profile/data-card/index.tsx @@ -1,11 +1,9 @@ 'use client'; import { type ProfileProps } from '../types'; -import { CheckboxWithText } from './checkbox-field'; import { DataField } from './text-field'; import { CardSectionHeader } from '@/components/ui'; import { useCustomerMutation, useCustomerQuery } from '@/hooks/api/customers'; -import { Enum_Customer_Role as Role } from '@repo/graphql/types'; import { Button } from '@repo/ui/components/ui/button'; import { Card } from '@repo/ui/components/ui/card'; import Link from 'next/link'; @@ -49,7 +47,7 @@ export function ProfileDataCard() { value={customer?.name ?? ''} /> - @@ -58,7 +56,7 @@ export function ProfileDataCard() { }) } text="Быть мастером" - /> + /> */} );