Skip to content

Commit

Permalink
refactor: remove unavailable buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
hudy9x committed Nov 21, 2024
1 parent 6acead7 commit c20dd10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui-app/app/_features/TaskActions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ interface ITaskActionsProps {
export default function TaskActions({ className, taskId }: ITaskActionsProps) {
return (
<div className={`task-actions ${className}`}>
<Button leadingIcon={<LuGitBranchPlus />} />
<Button leadingIcon={<HiOutlineDocumentDuplicate />} />
{/* <Button leadingIcon={<LuGitBranchPlus />} /> */}
{/* <Button leadingIcon={<HiOutlineDocumentDuplicate />} /> */}
<TaskDeleteAction id={taskId} />
</div>
)
Expand Down

0 comments on commit c20dd10

Please sign in to comment.