Skip to content

Commit

Permalink
fix lint formatting warning
Browse files Browse the repository at this point in the history
  • Loading branch information
yuetloo committed Mar 20, 2024
1 parent 39d434f commit e803236
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions subgraph/src/PollMapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ export function handlePublishMessage(event: PublishMessage): void {
let pollEntityId = event.transaction.to!.toHex()
let poll = Poll.load(pollEntityId)
if (poll == null) {
log.error(
'Error: handlePublishMessage failed poll not found {}',
[pollEntityId]
)
log.error('Error: handlePublishMessage failed poll not found {}', [
pollEntityId,
])
return
}

Expand Down

0 comments on commit e803236

Please sign in to comment.