Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
Fix code mistake
  • Loading branch information
lulunac27a authored Mar 23, 2024
1 parent a7a6c83 commit 3ecf4ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/vehicle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class VehicleModule extends ModuleBase {
length: 1,
casing: 'upper',
exclude,
})}${this.faker.number.int({ min: 0, max: 99999 }).toString().padStart(5, '0'}`; // return five digit # with leading zeros
})}${this.faker.number.int({ min: 0, max: 99999 }).toString().padStart(5, '0')}`; // return five digit # with leading zeros
}

/**
Expand Down

0 comments on commit 3ecf4ab

Please sign in to comment.