Skip to content

Commit

Permalink
chore: change Number to number for eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
daphne-sfdc committed Dec 5, 2023
1 parent 04ee5fe commit 4d59a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/salesforcedx-utils/src/cli/checkCliVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class CheckCliVersion {
return [-1];
}

public async validateCliInstallationAndVersion(sfdxCliVersionArray: number[], sfCliVersionArray: number[]): Promise<Number> {
public async validateCliInstallationAndVersion(sfdxCliVersionArray: number[], sfCliVersionArray: number[]): Promise<number> {
// The last working version of SFDX is v7.193.2
const minSFDXVersion = '7.193.2';
const minSFDXVersionArray = minSFDXVersion.split('.').map(Number);
Expand Down

0 comments on commit 4d59a2e

Please sign in to comment.