Skip to content

Commit b4c0332

Browse files
committed
change the name for download
1 parent d23a697 commit b4c0332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/DownloadBrochureButton.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function DownloadBrochureButton({
1111
const downloadBrochure = () => {
1212
const link = document.createElement('a');
1313
link.href = '/Participant_Rulebook_Updated.pdf';
14-
link.download = 'OpenCode-Brochure.pdf';
14+
link.download = 'Participant_Rulebook_Updated.pdf';
1515
document.body.appendChild(link);
1616
link.click();
1717
document.body.removeChild(link);

0 commit comments

Comments
 (0)