Skip to content

Commit

Permalink
revert download file button for now
Browse files Browse the repository at this point in the history
  • Loading branch information
tedim52 committed Nov 9, 2023
1 parent 8253266 commit 15a2249
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const DownloadFileButton = ({ file, enclave }: DownloadFileButtonProps) =
const handleDownloadClick = async () => {
setIsLoading(true);
// todo: get tgz download instead
const maybeFile = await kurtosisClient.downloadFilesArtifact(enclave, file);
const maybeFile = await kurtosisClient.inspectFilesArtifactContents(enclave, file);
if (maybeFile.isErr) {
toast({
title: `Could not inspect ${file.fileName}: ${maybeFile.error}`,
Expand Down

0 comments on commit 15a2249

Please sign in to comment.