From 3ab058bf03f49244b55826f54e90ade672bcc1c1 Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Tue, 8 Jul 2025 15:02:13 +0330 Subject: [PATCH] fix build --- src/pages/home/types/HomeTypes.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pages/home/types/HomeTypes.ts b/src/pages/home/types/HomeTypes.ts index d3aea94..fca381e 100644 --- a/src/pages/home/types/HomeTypes.ts +++ b/src/pages/home/types/HomeTypes.ts @@ -1,5 +1,3 @@ -import { UserItemType } from "../../users/types/UserTypes"; - export type workspaceItem = { id: string; createdAt: string; @@ -44,5 +42,6 @@ export type workspaceItem = { description: string; slug: string; status: string; - staff: UserItemType[]; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + staff: any[]; };