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 ( <> - + ); }