Skip to content

Commit f94ca45

Browse files
committed
fix(scope): removed key prop from PropsTable
1 parent 6dd33c6 commit f94ca45

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/PropsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
import { css } from '@patternfly/react-styles'
1212
import accessibleStyles from '@patternfly/react-styles/css/utilities/Accessibility/accessibility'
1313
import textStyles from '@patternfly/react-styles/css/utilities/Text/text'
14-
import {Content} from '@patternfly/react-core';
14+
import { Content } from '@patternfly/react-core'
1515

1616
export type ComponentProp = {
1717
name: string

src/components/PropsTables.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ const propsData = await getPropsData(propComponents)
4242
.map((component: any) => (
4343
<StackItem key={component.name}>
4444
<PropsTable
45-
key={component.name}
4645
componentName={component.name}
4746
componentDescription={component.description}
4847
componentProps={component.props}

0 commit comments

Comments
 (0)