Skip to content

Commit

Permalink
feat: fix code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
duttarnab committed Jul 22, 2023
1 parent da43379 commit 04e6937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin-ui/app/utils/RandomHashGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class RandomHashGenerator {
let str = "";
let bytes = new Uint8Array(a);
const len = bytes.byteLength;
for (var i = 0; i < len; i++) {
for (let i = 0; i < len; i++) {
str += String.fromCharCode(bytes[i]);
}

Expand Down

0 comments on commit 04e6937

Please sign in to comment.