+ );
+};
+
+export default ActionsMenu;
diff --git a/app/layout/project/sidebar/project/inventory-panel/cost-surfaces/index.tsx b/app/layout/project/sidebar/project/inventory-panel/cost-surfaces/index.tsx
index ccd27241ba..616cdb7ad5 100644
--- a/app/layout/project/sidebar/project/inventory-panel/cost-surfaces/index.tsx
+++ b/app/layout/project/sidebar/project/inventory-panel/cost-surfaces/index.tsx
@@ -7,8 +7,8 @@ import { setSelectedCostSurfaces as setVisibleCostSurfaces } from 'store/slices/
import { useProjectCostSurfaces } from 'hooks/cost-surface';
+import ActionsMenu from 'layout/project/sidebar/project/inventory-panel/cost-surfaces/actions-menu';
import CostSurfacesBulkActionMenu from 'layout/project/sidebar/project/inventory-panel/cost-surfaces/bulk-action-menu';
-import ActionsMenu from 'layout/project/sidebar/project/inventory-panel/features/actions-menu';
import { CostSurface } from 'types/api/cost-surface';
import InventoryTable, { type DataItem } from '../components/inventory-table';
diff --git a/app/layout/project/sidebar/project/inventory-panel/cost-surfaces/modals/delete/index.tsx b/app/layout/project/sidebar/project/inventory-panel/cost-surfaces/modals/delete/index.tsx
index 095c5bc7c4..0fad5ab67a 100644
--- a/app/layout/project/sidebar/project/inventory-panel/cost-surfaces/modals/delete/index.tsx
+++ b/app/layout/project/sidebar/project/inventory-panel/cost-surfaces/modals/delete/index.tsx
@@ -39,15 +39,15 @@ const DeleteModal = ({
}, [allProjectCostSurfacesQuery.data, selectedCostSurfacesIds]);
const costSurfaceNames = selectedCostSurfaces.map(({ name }) => name);
- // ? the user will be able to delete the features only if they are not being used by any scenario.
+ // ? the user will be able to delete the cost surfaces only if they are not being used by any scenario.
const haveScenarioAssociated = selectedCostSurfaces.some(({ scenarioUsageCount }) =>
Boolean(scenarioUsageCount)
);
const handleBulkDelete = useCallback(() => {
- const deletableFeatureIds = selectedCostSurfaces.map(({ id }) => id);
+ const deletableCostSurfaceIds = selectedCostSurfaces.map(({ id }) => id);
- bulkDeleteCostSurfaceFromProject(pid, deletableFeatureIds, session)
+ bulkDeleteCostSurfaceFromProject(pid, deletableCostSurfaceIds, session)
.then(async () => {
await queryClient.invalidateQueries(['cost-surfaces', pid]);
@@ -57,7 +57,7 @@ const DeleteModal = ({
'delete-bulk-project-cost-surfaces',
<>