Files
plane/web/ce/components/estimates/points/delete.tsx
guru_sainath cc455b0e76 [WEB-1640] fix: validating the error in estimate delete (#4853)
* fix: validating the error in estimate delete

* fix: moved estimate delete to ee
2024-06-18 16:14:24 +05:30

18 lines
501 B
TypeScript

"use client";
import { FC } from "react";
import { TEstimateTypeErrorObject } from "@plane/types";
type TEstimatePointDelete = {
workspaceSlug: string;
projectId: string;
estimateId: string;
estimatePointId: string;
callback: () => void;
estimatePointError?: TEstimateTypeErrorObject | undefined;
handleEstimatePointError?: (newValue: string, message: string | undefined, mode?: "add" | "delete") => void;
};
export const EstimatePointDelete: FC<TEstimatePointDelete> = () => <></>;