Skip to content

Commit

Permalink
fix(all): Create bot working again.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jul 18, 2023
1 parent 3fd3213 commit 0ed3dce
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/admin.gbapp/services/GBAdminService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ export class GBAdminService implements IGBAdminService {
}

public static getNumberIdentifier(size: number = 14): string {

return Math.trunc(Math.random() * size).toString();
return Math.floor(Math.random() * size).toString();
}

/**
Expand Down

0 comments on commit 0ed3dce

Please sign in to comment.