We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 271914c commit 403caadCopy full SHA for 403caad
1 file changed
util.ts
@@ -55,7 +55,7 @@ export async function withApp(
55
app = Deno.env.get("DENO_DEPLOY_APP");
56
}
57
58
- if (!org || !app) {
+ if (org === undefined || app === undefined) {
59
const trpcClient = createTrpcClient(debug, deployUrl);
60
61
const orgs: Array<{
0 commit comments