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 {}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b36e89-405db.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b36e89-405db.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?