Skip to content

Commit

Permalink
[UI-v2] fix: remove null check
Browse files Browse the repository at this point in the history
  • Loading branch information
Devan Grose committed Feb 11, 2025
1 parent 1fba2f0 commit dc962e7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ui-v2/src/routes/artifacts/artifact.$id.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,5 @@ function RouteComponent() {

const artifactWithMetadata = useGetArtifactFlowTaskRuns(id);

console.log("w/ metadata", artifactWithMetadata);
if (!artifact) {
return null;
}

return <ArtifactDetailPage artifact={artifactWithMetadata ?? artifact} />;
}

0 comments on commit dc962e7

Please sign in to comment.