diff options
Diffstat (limited to 'src/trigger/notifications.ts')
| -rw-r--r-- | src/trigger/notifications.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trigger/notifications.ts b/src/trigger/notifications.ts index e801e07d..77b8713f 100644 --- a/src/trigger/notifications.ts +++ b/src/trigger/notifications.ts @@ -4,7 +4,7 @@ import { createClient } from '@supabase/supabase-js'; export const notificationsTask = schedules.task({ id: 'notifications', - run: async (_payload: any, { ctx }) => { + run: async (_payload, { ctx }) => { const environment = ctx.environment.slug; const triggerProjectReference = ctx.project.ref; const getUserSubscriptions = async () => { |