fix build

This commit is contained in:
hamid zarghami
2025-07-08 15:02:13 +03:30
parent 1691f80e53
commit 3ab058bf03
+2 -3
View File
@@ -1,5 +1,3 @@
import { UserItemType } from "../../users/types/UserTypes";
export type workspaceItem = { export type workspaceItem = {
id: string; id: string;
createdAt: string; createdAt: string;
@@ -44,5 +42,6 @@ export type workspaceItem = {
description: string; description: string;
slug: string; slug: string;
status: string; status: string;
staff: UserItemType[]; // eslint-disable-next-line @typescript-eslint/no-explicit-any
staff: any[];
}; };