Skip to content

Commit

Permalink
fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
gabalafou committed Mar 26, 2024
1 parent ed12797 commit 3d44501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/metadata/components/EnvBuildStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface IEnvBuildStatusProps {
}

export const EnvBuildStatus = ({ build }: IEnvBuildStatusProps) => {
const logArtifact: Artifact | never = artifactList(build.id, ["LOGS"])[0];
const logArtifact: Artifact | void = artifactList(build.id, ["LOGS"])[0];

return (
<StyledMetadataItem
Expand Down

0 comments on commit 3d44501

Please sign in to comment.