Skip to content

Commit b3ff10f

Browse files
Fixed failing webhook service
1 parent 6f9a785 commit b3ff10f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/modules/webhooks/webhook.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export async function listWebhooks(creatorId: string): Promise<WebhookResponse[]
6868
orderBy: { createdAt: 'desc' },
6969
});
7070

71-
return webhooks.map((w: { events: string[] }) => ({
71+
return webhooks.map((w) => ({
7272
...w,
7373
events: denormalizeEvents(w.events as ('BUY' | 'SELL')[]),
7474
}));

0 commit comments

Comments
 (0)