chore: lint

This commit is contained in:
usopp
2024-12-19 01:58:18 +01:00
parent 3a95474662
commit 9d1cf3736b
2 changed files with 13 additions and 13 deletions

View File

@@ -99,15 +99,15 @@ export const ShowPreviewDeployments = ({ applicationId }: Props) => {
deploymentId={previewDeployment.previewDeploymentId}
deploymentUrl={`http://${domain?.host}`}
deployments={previewDeployment?.deployments || []}
domainId={domain?.domainId}
domainHost={domain?.host}
domainId={domain?.domainId || ""}
domainHost={domain?.host || ""}
pullRequestTitle={
previewDeployment?.pullRequestTitle
previewDeployment?.pullRequestTitle || ""
}
pullRequestUrl={previewDeployment?.pullRequestURL}
pullRequestUrl={previewDeployment?.pullRequestURL || ""}
status={previewDeployment.previewStatus}
branch={previewDeployment?.branch}
date={previewDeployment?.createdAt}
branch={previewDeployment?.branch || ""}
date={previewDeployment?.createdAt || ""}
isLoading={isLoading}
/>
)}