File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -348,11 +348,13 @@ async function handleStep2(
348348 {
349349 onboarding,
350350 userInfo,
351+ supportDir,
351352 } : {
352353 onboarding : {
353354 finishedAt ?: string ;
354355 } ;
355356 userInfo : UserInfo ;
357+ supportDir : string ;
356358 } ,
357359) {
358360 const graphData = await handleGetFederatedGraphResponse ( opts . client , {
@@ -551,7 +553,7 @@ export default function (opts: BaseCommandOptions) {
551553 return async function handleCommand ( ) {
552554 clearScreen ( ) ;
553555 printHello ( ) ;
554- await prepareSupportingData ( ) ;
556+ const supportDir = await prepareSupportingData ( ) ;
555557
556558 await waitForKeyPress (
557559 {
@@ -569,6 +571,6 @@ export default function (opts: BaseCommandOptions) {
569571 return ;
570572 }
571573
572- await handleStep2 ( opts , { onboarding : onboardingCheck , userInfo } ) ;
574+ await handleStep2 ( opts , { onboarding : onboardingCheck , userInfo, supportDir } ) ;
573575 } ;
574576}
You can’t perform that action at this time.
0 commit comments