Fix compilation issues

Signed-off-by: Jake Crews <jake.crews@daveramsey.com>
This commit is contained in:
Jake Crews
2022-08-26 07:20:17 -05:00
parent ded44b374d
commit 9ad1ae83bc
5 changed files with 5 additions and 7 deletions
@@ -8,7 +8,7 @@
// @public (undocumented)
export const EntityTeamPullRequestsCard: (
props: EntityTeamPullRequestsCardProps,
) => JSX.Element | null;
) => JSX.Element;
// @public (undocumented)
export interface EntityTeamPullRequestsCardProps {
@@ -19,7 +19,7 @@ export interface EntityTeamPullRequestsCardProps {
// @public (undocumented)
export const EntityTeamPullRequestsContent: (
props: EntityTeamPullRequestsContentProps,
) => JSX.Element | null;
) => JSX.Element;
// @public (undocumented)
export interface EntityTeamPullRequestsContentProps {
@@ -57,11 +57,11 @@
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^26.0.7",
"@types/node": "^16.11.26",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.45.0"
},
"peerDependencies": {
"@types/react": "^16.13.1 || ^17.0.0",
"react": "^16.13.1 || ^17.0.0",
"react-dom": "^16.13.1 || ^17.0.0"
},
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React, { FunctionComponent, useState } from 'react';
import React, { useState } from 'react';
import { Grid, Typography } from '@material-ui/core';
import FullscreenIcon from '@material-ui/icons/Fullscreen';
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React, { FunctionComponent, useState } from 'react';
import React, { useState } from 'react';
import { Grid, Typography } from '@material-ui/core';
import { Progress, InfoCard } from '@backstage/core-components';
@@ -18,8 +18,6 @@ import {
createComponentExtension,
createRoutableExtension,
} from '@backstage/core-plugin-api';
import { EntityTeamPullRequestsCardProps } from './components/EntityTeamPullRequestsCard/EntityTeamPullRequestsCard';
import { EntityTeamPullRequestsContentProps } from './components/EntityTeamPullRequestsContent/EntityTeamPullRequestsContent';
import { rootRouteRef } from './routes';
const githubPullRequestsBoardPlugin = createPlugin({