Remove a superfluous condition

`value` is always evaluated to true, due to the
check on the previous line
This commit is contained in:
jvoisin 2020-12-21 13:53:19 +01:00
parent f165fd91c0
commit 61691fdedb
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ export const validateClientId = (value) => {
if (!value) { if (!value) {
return undefined; return undefined;
} }
const formattedValue = value ? value.trim() : value; const formattedValue = value.trim();
if (formattedValue && !( if (formattedValue && !(
R_IPV4.test(formattedValue) R_IPV4.test(formattedValue)
|| R_IPV6.test(formattedValue) || R_IPV6.test(formattedValue)