diff --git a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx index 12919bd937..53cbc754cf 100644 --- a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx +++ b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx @@ -146,7 +146,7 @@ const generatedColumns: TableColumn[] = [ highlight: true, width: '20%', render: (row: Partial) => { - const LinkWrapper: React.FC<{}> = () => { + const LinkWrapper = () => { const routeLink = useRouteRef(circleCIBuildRouteRef); return ( diff --git a/plugins/cloudbuild/src/components/WorkflowRunsTable/WorkflowRunsTable.tsx b/plugins/cloudbuild/src/components/WorkflowRunsTable/WorkflowRunsTable.tsx index 4c24e9f790..d79d481cd4 100644 --- a/plugins/cloudbuild/src/components/WorkflowRunsTable/WorkflowRunsTable.tsx +++ b/plugins/cloudbuild/src/components/WorkflowRunsTable/WorkflowRunsTable.tsx @@ -56,7 +56,7 @@ const generatedColumns: TableColumn[] = [ highlight: true, width: '200px', render: (row: Partial) => { - const LinkWrapper: React.FC<{}> = () => { + const LinkWrapper = () => { const routeLink = useRouteRef(buildRouteRef); return ( ) => { - const LinkWrapper: React.FC<{}> = () => { + const LinkWrapper = () => { const routeLink = useRouteRef(buildRouteRef); return ( diff --git a/plugins/jenkins/src/components/BuildsPage/lib/CITable/CITable.tsx b/plugins/jenkins/src/components/BuildsPage/lib/CITable/CITable.tsx index 426142fd20..39187fe859 100644 --- a/plugins/jenkins/src/components/BuildsPage/lib/CITable/CITable.tsx +++ b/plugins/jenkins/src/components/BuildsPage/lib/CITable/CITable.tsx @@ -92,7 +92,7 @@ const generatedColumns: TableColumn[] = [ field: 'fullName', highlight: true, render: (row: Partial) => { - const LinkWrapper: React.FC<{}> = () => { + const LinkWrapper = () => { const routeLink = useRouteRef(buildRouteRef); if (!row.fullName || !row.lastBuild?.number) { return (