This commit is contained in:
Mo Tarbin 2025-03-05 22:06:09 -05:00
commit c553e2077a
2 changed files with 2 additions and 2 deletions

View file

@ -115,7 +115,7 @@ const LoginView = () => {
Navigate('/forgot-password')
}
const generateRandomState = () => {
const randomState = Math.random().toString(36).substring(7)
const randomState = Math.random().toString(32).substring(5)
localStorage.setItem('authState', randomState)
return randomState