Skip to content

Commit

Permalink
FIX : build issue in card component
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajeyakrishna-k committed Oct 18, 2023
1 parent 9851e57 commit ce6aee5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/components/issues/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,16 @@ const Card: FC<IssueCardProps> = ({ issue }) => {
</button>
)}
{isUserAuthorized && taskExists && devMode && (
<ActionForm taskId={taskId || ''} />
<ActionForm
taskId={taskId || ''}
createTask={async () => {
console.log('Placeholder');
}}
updateTask={async () => {
console.log('Placeholder');
}}
taskAssignee=""
/>
)}
</div>
</div>
Expand Down

0 comments on commit ce6aee5

Please sign in to comment.