remove currentStep from step type

This commit is contained in:
Joao Correia
2025-01-30 12:06:13 +00:00
parent c968044160
commit f89b42c41c
2 changed files with 2 additions and 2 deletions

View File

@@ -8,17 +8,18 @@ import UserWithProfilePic from "./UserWithProfilePic";
interface Props extends WorkflowStep {
workflowAssignees: User[],
currentStep: boolean,
}
export default function WorkflowStepComponent({
workflowAssignees,
currentStep,
stepType,
stepNumber,
completed,
completedBy,
assignees,
finalStep,
currentStep,
selected = false,
onClick,
}: Props) {