Skip to content

Commit 403caad

Browse files
committed
do not ask org when org is specified and app is null
1 parent 271914c commit 403caad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export async function withApp(
5555
app = Deno.env.get("DENO_DEPLOY_APP");
5656
}
5757

58-
if (!org || !app) {
58+
if (org === undefined || app === undefined) {
5959
const trpcClient = createTrpcClient(debug, deployUrl);
6060

6161
const orgs: Array<{

0 commit comments

Comments
 (0)