Skip to content

Commit

Permalink
ci: Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Jul 12, 2024
1 parent 73f8f66 commit 5dea5d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/seam-webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class SeamWebhook {

verify(payload: string, headers: Record<string, string>): SeamEvent {
const normalizedHeaders = Object.fromEntries(
Object.entries(headers).map(([key, value]) => [key.toLowerCase(), value])
Object.entries(headers).map(([key, value]) => [key.toLowerCase(), value]),
)

return this.#webhook.verify(payload, normalizedHeaders) as SeamEvent
Expand Down

0 comments on commit 5dea5d9

Please sign in to comment.