Skip to content

Commit 1dc1e48

Browse files
author
Eric Olkowski
committed
Resolved build errors
1 parent d845bd6 commit 1dc1e48

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/components/PropsTable.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export const PropsTable: React.FunctionComponent<PropsTableProps> = ({
4444
: []
4545

4646
if (betaDeprecatedProps.length) {
47+
// eslint-disable-next-line no-console
4748
console.error(
4849
`The following ${componentName} props have both the isBeta and isDeprecated tag: ${betaDeprecatedProps.map((prop) => prop.name).join(', ')}`,
4950
)

src/components/__tests__/PropsTable.test.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { render, screen, within } from '@testing-library/react'
22
import { PropsTable, type ComponentProp } from '../PropsTable'
3-
import textStyles from '@patternfly/react-styles/css/utilities/Text/text'
43

54
const componentName = 'TestComponent'
65
const componentDescription =

0 commit comments

Comments
 (0)