Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlog committed Oct 3, 2022
1 parent 9947fa2 commit 0ef2045
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,6 @@ export const ArtifactListPage = memo<ArtifactListPageProps>(
policies={policiesRequest.data?.items || []}
policiesIsLoading={policiesRequest.isLoading}
data-test-subj={getTestId('flyout')}
secondaryFlyoutInfo={secondaryPageInfo}
/>
)}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ export interface ArtifactFlyoutProps {
labels?: Partial<typeof ARTIFACT_FLYOUT_LABELS>;
'data-test-subj'?: string;
size?: EuiFlyoutSize;
secondaryFlyoutInfo: React.ReactNode;
}

/**
Expand All @@ -189,7 +188,6 @@ export const ArtifactFlyout = memo<ArtifactFlyoutProps>(
submitHandler,
labels: _labels = {},
'data-test-subj': dataTestSubj,
secondaryFlyoutInfo,
size = 'm',
}) => {
const {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const NoDataEmptyState = memo<{
/** Should the Add button be disabled */
isAddDisabled?: boolean;
backComponent?: React.ReactNode;
secondaryAboutInfo: React.ReactNode;
secondaryAboutInfo?: React.ReactNode;
'data-test-subj'?: string;
}>(
({
Expand Down

0 comments on commit 0ef2045

Please sign in to comment.