Skip to content

Commit

Permalink
Update web/src/api/resources/Deployments.ts
Browse files Browse the repository at this point in the history
use optional syntax

Co-authored-by: Jordan Jensen <[email protected]>
  • Loading branch information
sagerb and dotNomad authored Nov 30, 2023
1 parent 76deeb0 commit 57f0404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/api/resources/Deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export class Deployments {
}

publish(
accountName : string | undefined = undefined,
target: string | undefined = undefined,
accountName? : string,
target?: string,
){
const params = {
account: accountName,
Expand Down

0 comments on commit 57f0404

Please sign in to comment.