From c35179d9240647884f592622d036bfad228f7bda Mon Sep 17 00:00:00 2001 From: "Shishkevich D." <135337715+shishkevichd@users.noreply.github.com> Date: Sun, 9 Mar 2025 06:38:45 +0000 Subject: [PATCH] chore: remove unused variable --- web/assets/js/util/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/assets/js/util/index.js b/web/assets/js/util/index.js index c3bf68e7..75cf915d 100644 --- a/web/assets/js/util/index.js +++ b/web/assets/js/util/index.js @@ -106,7 +106,7 @@ class RandomUtil { static randomShortIds() { const lengths = [2, 4, 6, 8, 10, 12, 14, 16].sort(() => Math.random() - 0.5); - const seq = this.getSeq(); + return lengths.map(len => this.randomSeq(len)).join(','); }