diff --git a/docs/documentation/guides/jobs/managing.mdx b/docs/documentation/guides/jobs/managing.mdx index b20b6945e..c5a715019 100644 --- a/docs/documentation/guides/jobs/managing.mdx +++ b/docs/documentation/guides/jobs/managing.mdx @@ -64,7 +64,7 @@ client.defineJob({ name: "Example Job", version: "0.1.0", trigger: eventTrigger({ name: "example.event" }), - enabled: process.env.TRIGGER_JOBS_DISABLED === "true", + enabled: process.env.TRIGGER_JOBS_DISABLED !== "true", run: async (payload, io, ctx) => { // your Job code here },