Skip to content

Commit baf8aff

Browse files
committed
re-enable wizard
1 parent eead511 commit baf8aff

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/wizard/src/demo/DeleteWizard.stories.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const stepStyles = css`
1515
`;
1616

1717
const footerStyles = css`
18-
/* position: fixed; */
1918
bottom: 0;
2019
`;
2120
const footerContentStyles = css`
@@ -38,7 +37,7 @@ export const DeleteProjectWizard = () => {
3837
height: 100%;
3938
`}
4039
>
41-
<Wizard activeStep={1}>
40+
<Wizard>
4241
<Wizard.Step className={stepStyles}>
4342
<RecommendedActions />
4443
<Wizard.Footer

packages/wizard/src/demo/RequiredActionCards/ClustersCard.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ export const ClustersCard = ({
183183
}: InheritedRequiredActionCardProps) => {
184184
const { isLoading, tableData } = useFetchRequiredActionTableData({
185185
demoData: demoClustersData,
186-
_demoDelay: 10_000,
187186
});
188187

189188
const table = useLeafyGreenTable({
@@ -222,7 +221,7 @@ export const ClustersCard = ({
222221
columnLabels={clustersColumns.map(col => (
223222
<>
224223
{typeof col.header === 'function'
225-
? col.header({})
224+
? col.header({} as any)
226225
: col.header ?? ''}
227226
</>
228227
))}

0 commit comments

Comments
 (0)