@secondstaxorg/sscomp 1.8.54 → 1.8.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -22250,13 +22250,13 @@ const TextField = (props) => {
22250
22250
  },[value]);
22251
22251
 
22252
22252
  React$1.useEffect(()=>{
22253
- if (inputVal.length > 0){
22253
+ if (inputVal){
22254
22254
  setBorderColor('success');
22255
22255
  }
22256
22256
  },[inputVal]);
22257
22257
 
22258
22258
  function validate(){
22259
- if (inputVal.length > 0){
22259
+ if (inputVal){
22260
22260
  setBorderColor('success');
22261
22261
  setErr(false);
22262
22262
  }else {