parsedValue is already validated to be non-null and positive when assigned. Consider extracting this validation into a computed property or simplifying to just check parsedValue != null && selectedUnit != null since the positive check is redundant. #42