Skip to content

Commit

Permalink
fix: add prefix to name of exported MP4 file
Browse files Browse the repository at this point in the history
  • Loading branch information
vannizhang committed Mar 27, 2024
1 parent 82d0769 commit 7a88300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AnimationDownloadPanel/DownloadPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const AnimationDownloadPanel: FC<Props> = ({
abortController: abortController.current,
});

downloadBlob(fileContent, filename);
downloadBlob(fileContent, 'wayback-animation-' + filename);

setDownloadJobStatus('finished');
} catch (err) {
Expand Down

0 comments on commit 7a88300

Please sign in to comment.