[WEB-3856]chore: refactor work item activity (#6923)

* chore: refactor work item activity

* chore: added estimate render for notifications
This commit is contained in:
Vamsi Krishna
2025-04-15 16:35:28 +05:30
committed by GitHub
parent a4bca0c39c
commit c401b26dd4
9 changed files with 25 additions and 13 deletions
@@ -0,0 +1,13 @@
"use client";
import { FC } from "react";
import { observer } from "mobx-react";
export type TAdditionalActivityRoot = {
activityId: string;
showIssue?: boolean;
ends: "top" | "bottom" | undefined;
field: string | undefined;
};
export const AdditionalActivityRoot: FC<TAdditionalActivityRoot> = observer(() => <></>);
@@ -4,3 +4,4 @@ export * from "./issue-type-switcher";
export * from "./issue-type-activity";
export * from "./parent-select-root";
export * from "./issue-creator";
export * from "./additional-activity-root";
@@ -1,3 +0,0 @@
import { TIssueActivity } from "@plane/types";
export const renderEstimate = (activity: TIssueActivity, value: string) => value;
@@ -1,2 +1 @@
export * from "./root";
export * from "./helper";