Skip to content

Commit 91c52ee

Browse files
committed
fix lint errors
1 parent f4af937 commit 91c52ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

protocol-designer/src/components/molecules/ConcurrentGroup/ConcurrentGroup.stories.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const OnlyCheckpoints: Story = {
1919
},
2020
render: args => (
2121
<div style={{ width: '300px' }}>
22-
<ConcurrentGroup {...args}>
22+
<ConcurrentGroup active={args.active}>
2323
<ConcurrentGroupChild type="checkpoint">
2424
<ConcurrentGroupCheckpoint text="Start profile" />
2525
</ConcurrentGroupChild>
@@ -55,7 +55,7 @@ export const CheckpointsAndStepContainers: Story = {
5555
error={false}
5656
semiTransparent={false}
5757
/>
58-
<ConcurrentGroup {...args}>
58+
<ConcurrentGroup active={args.active}>
5959
<ConcurrentGroupChild type="checkpoint">
6060
<ConcurrentGroupCheckpoint text="Start profile" />
6161
</ConcurrentGroupChild>
@@ -122,7 +122,7 @@ export const LongTextWrapping: Story = {
122122
},
123123
render: args => (
124124
<div style={{ width: '300px' }}>
125-
<ConcurrentGroup {...args}>
125+
<ConcurrentGroup active={args.active}>
126126
<ConcurrentGroupChild type="checkpoint">
127127
<ConcurrentGroupCheckpoint text="Start profile" />
128128
</ConcurrentGroupChild>

0 commit comments

Comments
 (0)