Fix compilation issues
Signed-off-by: Jake Crews <jake.crews@daveramsey.com>
This commit is contained in:
@@ -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"
|
||||
},
|
||||
|
||||
+1
-1
@@ -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';
|
||||
|
||||
|
||||
+1
-1
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user