From 2130532dfd9fb35f9a0e48d7f9944f203f30e4c4 Mon Sep 17 00:00:00 2001 From: ilnaz <237x237@gmail.com> Date: Sun, 24 Nov 2024 14:59:38 +0300 Subject: [PATCH] feat: separation of imports MasterItem.tsx (#40) --- src/components/MasterItem/MasterItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MasterItem/MasterItem.tsx b/src/components/MasterItem/MasterItem.tsx index 5175b56..9895d29 100644 --- a/src/components/MasterItem/MasterItem.tsx +++ b/src/components/MasterItem/MasterItem.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { Badge, Link, Stack, Td, Tr } from '@chakra-ui/react'; -import MasterActionsMenu from '../MasterActionsMenu'; +import MasterActionsMenu from '../MasterActionsMenu'; import { getTimeSlot } from '../../lib/date-helpers'; const MasterItem = ({ name, schedule, phone }) => {