Skip to content

Commit

Permalink
refactor: remove three digits from being generated
Browse files Browse the repository at this point in the history
  • Loading branch information
nikmace committed Feb 17, 2025
1 parent 4f36c83 commit ba230e8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/adp-tooling/src/base/change-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,7 @@ export function getChange(
content: object,
changeType: ChangeType
): ManifestChangeProperties {
const threeDigits = Math.floor(100 + Math.random() * 300).toString();
const fileName = `id_${timestamp}_${threeDigits}_${changeType.split('_')?.[2]}`;
const fileName = `id_${timestamp}_${changeType.split('_')?.[2]}`;

return {
fileName,
Expand Down

0 comments on commit ba230e8

Please sign in to comment.