Skip to content

Commit 24d2029

Browse files
committed
feat(CC-batch-3): lint fix
1 parent 73577bd commit 24d2029

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

packages/react-core/codeConnect/components/Banner/NonStatusBanner.figma.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ figma.connect(
2424
false: undefined
2525
})
2626
},
27-
example: (props) => <Banner color={props.color}>{props.icon}{props.text}</Banner>
27+
example: (props) => (
28+
<Banner color={props.color}>
29+
{props.icon}
30+
{props.text}
31+
</Banner>
32+
)
2833
}
2934
);

packages/react-core/codeConnect/components/CodeBlock/CodeBlock.figma.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { CodeBlock } from '@patternfly/react-core';
77

88
figma.connect(
99
CodeBlock,
10-
"https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components-Test?node-id=9802-5857&t=IzSunfrnw18ti37Y-11",
10+
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components-Test?node-id=9802-5857&t=IzSunfrnw18ti37Y-11',
1111
{
1212
props: {
1313
isExpandable: figma.boolean('Expandable'),

packages/react-core/codeConnect/components/CodeEditor/CodeEditor.figma.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ figma.connect(
1717
hasRuler: figma.boolean('Ruler'),
1818
hasRulerErrors: figma.boolean('Rule'),
1919
hasShortcuts: figma.boolean('With Shortcuts', { true: 'View Shortcuts' }),
20-
showsLineNumbers: figma.boolean('Show Line Numbers'),
20+
showsLineNumbers: figma.boolean('Show Line Numbers')
2121
},
2222
example: (props) => (
2323
<CodeEditor

0 commit comments

Comments
 (0)