Adhere to Prettier formatting

This commit is contained in:
James M. Greene
2022-09-09 18:51:35 -05:00
parent ec456f786c
commit dd23652c5c

View File

@@ -114,8 +114,8 @@ class Deployment {
this.deploymentInfo != null
? this.deploymentInfo['status_url']
: `${this.githubApiUrl}/repos/${this.repositoryNwo}/pages/deployment/status/${this.buildVersion}`
let pageUrl = this.deploymentInfo != null ? this.deploymentInfo["page_url"] : ""
const previewUrl = this.deploymentInfo != null ? this.deploymentInfo["preview_url"] : ""
let pageUrl = this.deploymentInfo != null ? this.deploymentInfo['page_url'] : ''
const previewUrl = this.deploymentInfo != null ? this.deploymentInfo['preview_url'] : ''
if (this.isPreview && previewUrl) {
pageUrl = previewUrl
}