This message was deleted.
# general
s
This message was deleted.
b
how are you creating the random string?
l
using this typescript function
Copy code
export const generateRandomString = (length: number): string => {

    const characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';

    // rest of code remains the same
    let result = '';
    const charactersLength = characters.length;
    for (let i = 0; i < length; i++) {
        result += characters.charAt(Math.floor(Math.random() * charactersLength));
    }

    return result;
}
it is my own function
b
l
perfect, you have everything on your side...
I will try it, thank you