Skip to content

Commit

Permalink
Fix yarn build
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Oct 18, 2023
1 parent 65b9153 commit 0d1653e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/entity-invalidator/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function run() {
let lastId = null;
let entities;

const lastIdWhere = {};
const lastIdWhere: any = {};
const whereClause = {
[Op.or]: [
{
Expand Down Expand Up @@ -96,7 +96,7 @@ async function run() {
})
.promise();

lastId = entities[entities.length - 1].id;
lastId = entities[entities.length - 1].address;
totalProgress += entities.length;
console.log(`Processed ${totalProgress} / ${totalCount}`);
}
Expand Down

0 comments on commit 0d1653e

Please sign in to comment.