Skip to content

Commit

Permalink
Removing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Brenda Coronel committed Jun 24, 2024
1 parent 0924135 commit 472f938
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions packages/react/src/task/task-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { CiCircleChevDown } from "react-icons/ci";
import { IconButton } from "@fluentui/react/lib/Button";
import { MdOutlineRunningWithErrors } from "react-icons/md";
import { RiProgress1Line, RiLoader3Fill } from "react-icons/ri";
//import { PagedAsyncIterableIterator } from "@azure/core-paging";

interface TaskListProps {
pagedTasks: any;
Expand Down Expand Up @@ -71,7 +70,6 @@ const columns: DataGridColumn[] = [
minWidth: 150,
maxWidth: 200,
onRender: (task: any) => {
console.log(task.exitConditions);
return (
<div>
{task.state.toLowerCase() === "completed" ? (
Expand Down Expand Up @@ -121,7 +119,6 @@ const columns: DataGridColumn[] = [
label: "Exit code",
prop: "exitCode",
minWidth: 150,
maxWidth: 200,
onRender: (task: any) => {
return <div>{task.exitConditions}</div>;
},
Expand All @@ -141,13 +138,3 @@ const columns: DataGridColumn[] = [
},
},
];
/**
<IconButton
name=""
iconProps={}
/>
Retry count: {task.executionInfo.retryCount} {"\n"}
Requeue count: {task.executionInfo.requeueCount}
*/

0 comments on commit 472f938

Please sign in to comment.