fix(auth): add method attribute to form for proper submission handling (#8699)

This commit is contained in:
Alejandro Bailo
2025-09-11 15:02:36 +02:00
committed by GitHub
parent 14c2334e1b
commit 82cd29d595
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -9,6 +9,10 @@ All notable changes to the **Prowler UI** are documented in this file.
- `Prowler Hub` menu item with tooltip [(#8692)] (https://github.com/prowler-cloud/prowler/pull/8692)
- Copy link button to finding detail page [(#8685)] (https://github.com/prowler-cloud/prowler/pull/8685)
### 🐞 Fixed
- POST method on auth form [(#8699)] (https://github.com/prowler-cloud/prowler/pull/8699)
## [1.12.0] (Prowler v5.12.0)
### 🚀 Added
+1
View File
@@ -206,6 +206,7 @@ export const AuthForm = ({
<Form {...form}>
<form
method="post"
className="flex flex-col gap-4"
onSubmit={form.handleSubmit(onSubmit)}
>