Skip to content

Commit

Permalink
Fixed error to remove anchor from document
Browse files Browse the repository at this point in the history
  • Loading branch information
Gutts-n committed Jan 25, 2024
1 parent 058d236 commit c26b763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/components/BucketViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export function BucketViewer({
a.download = data.fileName;
document.body.appendChild(a);
a.click();
document.removeChild(a);
document.body.removeChild(a);
}}
key={i}
onMouseEnter={() => setShowDownloadComponentOnLine(i)}
Expand Down

0 comments on commit c26b763

Please sign in to comment.