From e583da4d3efde3a5a1b3339505111351dafea2e2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 4 Sep 2024 21:50:45 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20code=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/functions/deploy.ts | 6 +++++- src/commands/functions/index.ts | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/commands/functions/deploy.ts b/src/commands/functions/deploy.ts index dace616..926e3e3 100644 --- a/src/commands/functions/deploy.ts +++ b/src/commands/functions/deploy.ts @@ -113,7 +113,11 @@ const deployAction: SdkGuardedFunction = async ({ await sdk .functions() - .deploy({ functionId: functionToDeploy.id, cid: uploadResult.pin.cid, sgx }); + .deploy({ + functionId: functionToDeploy.id, + cid: uploadResult.pin.cid, + sgx, + }); output.success(t('commonNameCreateSuccess', { name: 'deployment' })); output.printNewLine(); diff --git a/src/commands/functions/index.ts b/src/commands/functions/index.ts index a77bc2a..70fdab2 100644 --- a/src/commands/functions/index.ts +++ b/src/commands/functions/index.ts @@ -83,7 +83,7 @@ export default (program: Command) => { private: options.private, env: options.env ?? [], envFile: options.envFile, - sgx: options.sgx + sgx: options.sgx, }), );