line 41 in login.tsx
console.log(JSON.stringify(response));
line 53
console.log('Received token:', accessToken, 'username:', username, 'email:', email, 'clientId:', clientId)
Both these console logs expose sensitive information.
Consider only logging for testing locally but not committing those lines
line 41 in
login.tsxconsole.log(JSON.stringify(response));line 53
console.log('Received token:', accessToken, 'username:', username, 'email:', email, 'clientId:', clientId)Both these console logs expose sensitive information.
Consider only logging for testing locally but not committing those lines