fix: lint project (#2693)

This commit is contained in:
David Nguyen
2026-05-08 16:04:22 +10:00
committed by GitHub
parent edbf65969b
commit 8671f269e8
1414 changed files with 12867 additions and 24335 deletions
@@ -13,10 +13,7 @@ import {
import type { WebhookPayload } from '../../../types/webhook-payload';
export const generateSampleWebhookPayload = (
event: WebhookTriggerEvents,
webhookUrl: string,
): WebhookPayload => {
export const generateSampleWebhookPayload = (event: WebhookTriggerEvents, webhookUrl: string): WebhookPayload => {
const now = new Date();
const basePayload = {
id: 10,
@@ -55,8 +55,5 @@ export const handlerTriggerWebhooks = async (req: Request) => {
}),
);
return Response.json(
{ success: true, message: 'Webhooks queued for execution' },
{ status: 200 },
);
return Response.json({ success: true, message: 'Webhooks queued for execution' }, { status: 200 });
};