From 4a7918d051857ad5b94050932cd6d0a20cd00622 Mon Sep 17 00:00:00 2001 From: Greg Trihus Date: Tue, 19 May 2026 11:57:47 -0500 Subject: [PATCH] TT-7338 No additional project type for BOLD --- .../Team/ProjectDialog/ProjectDialog.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/renderer/src/components/Team/ProjectDialog/ProjectDialog.tsx b/src/renderer/src/components/Team/ProjectDialog/ProjectDialog.tsx index 8f9a1ac9..b791b9d4 100644 --- a/src/renderer/src/components/Team/ProjectDialog/ProjectDialog.tsx +++ b/src/renderer/src/components/Team/ProjectDialog/ProjectDialog.tsx @@ -27,10 +27,7 @@ import { StyledDialogTitle } from '../../StyledDialogTitle'; import Tags from '../../../control/Tags'; import { AltActionBar } from '../../../components/AltActionBar'; import { initProjectState, IProjectDialog } from './projectDialogTypes'; -import { - BOLD_WORKFLOW_PROCESS, - useTeamWorkflowProcess, -} from '../../../crud'; +import { BOLD_WORKFLOW_PROCESS, useTeamWorkflowProcess } from '../../../crud'; interface IProps extends IDialog { nameInUse?: (newName: string) => boolean; @@ -165,8 +162,16 @@ export function ProjectDialog(props: IProps) { /> - - + {teamWorkflow !== BOLD_WORKFLOW_PROCESS && ( + <> + + + + )}