refactor: drawers refactored

This commit is contained in:
2025-09-06 11:09:42 +04:00
parent 67780b5251
commit d76dc82cb8
44 changed files with 239 additions and 227 deletions

View File

@ -16,6 +16,10 @@ export type BoardSchema = {
* Lexorank
*/
lexorank: string;
/**
* Projectid
*/
projectId: number;
};
/**

View File

@ -9,6 +9,7 @@ export const zBoardSchema = z.object({
id: z.int(),
name: z.string(),
lexorank: z.string(),
projectId: z.int(),
});
/**