gururajbm / custom-select-tdd

Validation of JSX maximum depth JS-0415
Anti-pattern
Minor
2 occurrences in this check
Expected the depth of nested jsx elements to be <= 2, but found 3
106                this.handleOptionDeSelect(option);
107              }}
108            />
109            <InputTextBox110              data-test="custom-select-input-box"111              inputValue={searchKeyword}112              placeholder={defaultText}113              handleOnChange={(e) => {114                this.handleSearchText(e);115              }}116              handleOnFocus={(e) => {117                this.handleFocusOnSelect(e);118              }}119            />120          </div>
121          {showOption && (
122            <SelectOptionList
Expected the depth of nested jsx elements to be <= 2, but found 3
 99          className="tag-ctn tag-ctn-bootstrap-focus"
100        >
101          <div className="tag-sel-ctn">
102            <Tag103              data-test="customSelect-tag"104              tagList={selectedOption}105              handleTagRemove={(option) => {106                this.handleOptionDeSelect(option);107              }}108            />109            <InputTextBox
110              data-test="custom-select-input-box"
111              inputValue={searchKeyword}