We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2435f39 commit cb71249Copy full SHA for cb71249
1 file changed
internal-packages/run-engine/src/engine/systems/dequeueSystem.ts
@@ -401,7 +401,7 @@ export class DequeueSystem {
401
}
402
);
403
404
- isPaying = lockedTaskRun.planType !== null && lockedTaskRun.planType !== "free";
+ isPaying = (lockedTaskRun.planType ?? "free") !== "free";
405
} else {
406
isPaying = billingResult.val.isPaying;
407
0 commit comments