[WEB-3251] improvement: optimize projects API (#6542)

This commit is contained in:
Prateek Shourya 2025-02-04 16:02:07 +05:30 committed by GitHub
parent c14fb814c4
commit 10b5c625ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
52 changed files with 535 additions and 316 deletions

View file

@ -20,8 +20,8 @@ type BlockData = {
id: string;
name: string;
sort_order: number | null;
start_date: string | undefined | null;
target_date: string | undefined | null;
start_date?: string | undefined | null;
target_date?: string | undefined | null;
};
export interface IBaseTimelineStore {