We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff1ca70 commit 48ec6b1Copy full SHA for 48ec6b1
packages/client/logic/utils.ts
@@ -26,7 +26,7 @@ export function useTimer() {
26
27
export function makeId(length = 5) {
28
const result = []
29
- const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'
+ const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
30
const charactersLength = characters.length
31
for (let i = 0; i < length; i++)
32
result.push(characters.charAt(Math.floor(Math.random() * charactersLength)))
0 commit comments