File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ const stepStyles = css`
1515` ;
1616
1717const footerStyles = css `
18- /* position: fixed; */
1918 bottom : 0 ;
2019` ;
2120const 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
Original file line number Diff line number Diff 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 ) ) }
You can’t perform that action at this time.
0 commit comments