From 434994bfee1810cc2ceb06a872150be7b7144a52 Mon Sep 17 00:00:00 2001 From: ellinors Date: Wed, 1 Jul 2020 14:28:07 +0200 Subject: [PATCH] Code change to remove React.FC in SentryIssueTable.tsx, testing it out --- .../src/components/SentryIssuesTable/SentryIssuesTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/sentry/src/components/SentryIssuesTable/SentryIssuesTable.tsx b/plugins/sentry/src/components/SentryIssuesTable/SentryIssuesTable.tsx index cebd5563f4..aae8009d98 100644 --- a/plugins/sentry/src/components/SentryIssuesTable/SentryIssuesTable.tsx +++ b/plugins/sentry/src/components/SentryIssuesTable/SentryIssuesTable.tsx @@ -14,7 +14,7 @@ * limitations under the License. */ -import React, { FC } from 'react'; +import React from 'react'; import { Table, TableColumn } from '@backstage/core'; import { SentryIssue } from '../../data/sentry-issue'; import { format } from 'timeago.js'; @@ -60,7 +60,7 @@ type SentryIssuesTableProps = { sentryIssues: SentryIssue[]; }; -const SentryIssuesTable: FC = ({ sentryIssues }) => { +const SentryIssuesTable = ({ sentryIssues }: SentryIssuesTableProps) => { return (