Skip to content

Commit

Permalink
chore: Update anchor-repository.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
JulissaDantes authored Apr 15, 2024
1 parent fe5927f commit 6e6a775
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/repositories/anchor-repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export class AnchorRepository implements IAnchorRepository {
async findByRequestId(requestId: string): Promise<StoredAnchor | null> {
const row = await this.table.where({ requestId: requestId }).first()
if (!row) return null
console.log("IM HERE with ", row, requestId)
return decode(StoredAnchor, row)
}
}

0 comments on commit 6e6a775

Please sign in to comment.