fix(saml): remove validation call on email domain change (#8638)

This commit is contained in:
Alejandro Bailo
2025-09-03 17:04:51 +02:00
committed by GitHub
parent 1fc12952ba
commit b15e3d339c
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -15,6 +15,7 @@ All notable changes to the **Prowler UI** are documented in this file.
### 🐞 Fixed
- Scan page shows NoProvidersAdded when no providers [(#8626)](https://github.com/prowler-cloud/prowler/pull/8626)
- XML field in SAML configuration form validation [(#8638)](https://github.com/prowler-cloud/prowler/pull/8638)
## [1.11.0] (Prowler v5.11.0)
@@ -284,7 +284,6 @@ export const SamlConfigForm = ({
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
const newValue = e.target.value;
setEmailDomain(newValue);
validateFields(newValue, !!uploadedFile);
}}
/>