fix: remove redundant step

This commit is contained in:
David Nguyen
2025-11-24 19:33:56 +11:00
parent 7a55abadaf
commit 8083e54625

View File

@ -22,7 +22,6 @@ export const run = async ({
const { webhookUrl: url, secret } = webhook;
await io.runTask('execute-webhook', async () => {
const payloadData = {
event,
payload: data,
@ -70,5 +69,4 @@ export const run = async ({
success: response.ok,
status: response.status,
};
});
};