Skip to content

Commit

Permalink
style: remove unnecessary console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnigos committed Aug 19, 2024
1 parent 7b992d9 commit 803af5f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions app/board/components/tasks/modals/task-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ function TaskModal({

const dueDateFormValue = formData.get('dueDate')?.toString()

console.log(dueDateFormValue)

const dueDateValue = dueDateFormValue
? dueDateFormValue.includes('[')
? parseZonedDateTime(dueDateFormValue).toDate()
Expand Down
3 changes: 0 additions & 3 deletions app/board/components/tasks/task-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ function TaskCard({
{...draggableProps}
{...dragHandleProps}
className={cn(isDragging && 'opacity-50')}
onClick={() => {
console.log('clicked')
}}
>
<CardHeader className={cn(isDone && 'opacity-50')} onClick={onOpen}>
<Checkbox
Expand Down

0 comments on commit 803af5f

Please sign in to comment.