From a2fa85ce6aa5b6e8be509608a3c0c4318a7aecf3 Mon Sep 17 00:00:00 2001 From: Amin Ghasempoor Date: Thu, 26 Oct 2023 09:54:23 +0330 Subject: [PATCH] CFE-2 show categories and sub categories --- .../CallActionSubcategories/CallActionSubcategoriesButton.jsx | 1 - .../CallTabs/CallTabPanel/CallActions/index.jsx | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions/CallActionSubcategories/CallActionSubcategoriesButton.jsx b/src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions/CallActionSubcategories/CallActionSubcategoriesButton.jsx index 4051511..381b56b 100644 --- a/src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions/CallActionSubcategories/CallActionSubcategoriesButton.jsx +++ b/src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions/CallActionSubcategories/CallActionSubcategoriesButton.jsx @@ -1,5 +1,4 @@ import { Button, Stack } from "@mui/material"; -import useCategories from "@/lib/callWidget/hooks/useCategories"; import useRequest from "@/lib/app/hooks/useRequest"; import { CALL_ACTION } from "@/core/data/apiRoutes"; import useAnswers from "@/lib/callWidget/hooks/useAnswers"; diff --git a/src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions/index.jsx b/src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions/index.jsx index d713c76..1243278 100644 --- a/src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions/index.jsx +++ b/src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions/index.jsx @@ -1,11 +1,11 @@ import CallActionsCategories from "./CallActionCategories"; -import CallActionSubcategoriesButton from "./CallActionSubcategories/CallActionSubcategoriesButton"; +import CallActionsSubcategories from "./CallActionSubcategories"; function CallActions({ tab }) { return ( <> - + ); }