Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Aug 29, 2024
1 parent 1557332 commit ef6198b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/imperative/src/utilities/src/CliUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export class CliUtils {
`Command preparation was attempting to extract option values from this profile.`
});
}
fromCnfg = { ...(p ?? {}), ...fromCnfg };
fromCnfg = { ...p ?? {}, ...fromCnfg };
}

// Convert each property extracted from the config to the correct yargs
Expand Down

0 comments on commit ef6198b

Please sign in to comment.