Skip to content

Commit

Permalink
sheet location address input length >1 instead of >2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed Dec 14, 2024
1 parent 29f4e94 commit 92d5742
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class LocationAddressInputValidator
(!(args.object as SourcingDataExcelValidator).location_latitude_input ||
!(args.object as SourcingDataExcelValidator).location_longitude_input)
) {
return typeof addressInput === 'string' && addressInput.length > 2;
return typeof addressInput === 'string' && addressInput.length > 1;
} else {
return true;
}
Expand Down

0 comments on commit 92d5742

Please sign in to comment.