From 57f0404b2706df1168677b822568a04109df0185 Mon Sep 17 00:00:00 2001 From: Bill Sager Date: Thu, 30 Nov 2023 15:54:41 -0800 Subject: [PATCH] Update web/src/api/resources/Deployments.ts use optional syntax Co-authored-by: Jordan Jensen --- web/src/api/resources/Deployments.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/api/resources/Deployments.ts b/web/src/api/resources/Deployments.ts index cf9a73647..f4d479fbf 100644 --- a/web/src/api/resources/Deployments.ts +++ b/web/src/api/resources/Deployments.ts @@ -24,8 +24,8 @@ export class Deployments { } publish( - accountName : string | undefined = undefined, - target: string | undefined = undefined, + accountName? : string, + target?: string, ){ const params = { account: accountName,