frontend/farm_designer/map/background/target_coordinate.tsx
Function TargetCoordinate
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function TargetCoordinate(props: TargetCoordinateProps) {
const ID = "target-coordinate";
if (!props.chosenLocation) { return <g id={ID} />; }
const { x, y } = props.chosenLocation;
if (isNumber(x) && isNumber(y)) {