Skip to content

Commit c2c9501

Browse files
Update dashboard.js
1 parent 3d2ca2d commit c2c9501

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

static/dashboard.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -313,16 +313,6 @@ function showMessage(message, type = 'info') {
313313
}, 5000);
314314
}
315315

316-
// Generate random alias
317-
function generateRandomAlias(length = 20) {
318-
const chars = 'abcdefghijklmnopqrstuvwxyz0123456789';
319-
let result = '';
320-
for (let i = 0; i < length; i++) {
321-
result += chars.charAt(Math.floor(Math.random() * chars.length));
322-
}
323-
return result;
324-
}
325-
326316
// Initialize when DOM is ready
327317
document.addEventListener('DOMContentLoaded', function() {
328318
console.log('Dashboard JS loaded');

0 commit comments

Comments
 (0)