[WEB-5296]chore: grouping filter refactor (#8034)

This commit is contained in:
Vamsi Krishna 2025-10-29 20:36:28 +05:30 committed by GitHub
parent 0e8128594b
commit 710138f3a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 98 additions and 52 deletions

View file

@ -0,0 +1,9 @@
import type { TIssue } from "@plane/types";
export type TDateAlertProps = {
date: string;
workItem: TIssue;
projectId: string;
};
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export const DateAlert = (props: TDateAlertProps) => <></>;