diff --git a/npm-packages/system-udfs/convex/_system/frontend/deploymentEvents.ts b/npm-packages/system-udfs/convex/_system/frontend/deploymentEvents.ts index fb1f8840..98e1ff2b 100644 --- a/npm-packages/system-udfs/convex/_system/frontend/deploymentEvents.ts +++ b/npm-packages/system-udfs/convex/_system/frontend/deploymentEvents.ts @@ -11,7 +11,12 @@ export const lastPushEvent = queryPrivateSystem({ handler: async function ({ db }): Promise { const lastPushEvent = await db .query("_deployment_audit_log") - .filter((q) => q.eq(q.field("action"), "push_config")) + .filter((q) => + q.or( + q.eq(q.field("action"), "push_config"), + q.eq(q.field("action"), "push_config_with_components"), + ), + ) .order("desc") .first();