fix(frontend): remove console.log (#10649)

## Changes 🏗️

Not a helpful console log to land in production... We should disallow
console logs all together on the Front-end code, but that is a separate,
bigger PR...

### Checklist 📋

#### For code changes:
- [x] I have clearly listed my changes in the PR description
- [x] I have made a test plan
- [x] I have tested my changes according to the test plan:
  - [x] Go to the signup page
  - [x] Play with the password inputs
  - [x] Password is not printed in the console  

#### For configuration changes:

None
This commit is contained in:
Ubbe
2025-08-15 12:57:49 +02:00
committed by GitHub
parent 6bb6a081a2
commit 03e3e2ea9a

View File

@@ -79,7 +79,6 @@ export default function SignupPage() {
control={form.control}
name="password"
render={({ field }) => {
console.log(field);
return (
<Input
id={field.name}