Solve this code eslint error do not want to use continue, how to modify?

if (r.query.fromcrumb === "true") {
        // 
        for (let i = 0; i < this.keyList.length; iPP) {
   
          if (r.query.keyword.indexOf(this.keyList[i].name) >= 0) {
            continue;
          } else {
            this.keyList = this.keyList.slice(0, i);
            break;
          }
        }
      } else {}
      
Apr.11,2021

if (r.query.fromcrumb === 'true') {
        // 
        for (let i = 0; i < this.keyList.length; iPP) {
          if (r.query.keyword.indexOf(this.keyList[i].name) == -1) {
            this.keyList = this.keyList.slice(0, i);
            break;
          } 
        }
      } else {}
Menu