From c0122dd6810d7bf8b3ba4ab71557ab501d41746c Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 25 Sep 2022 20:18:02 +0200 Subject: [PATCH] Fix CV download --- src/data/shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/shared.ts b/src/data/shared.ts index e2e150d..65d9072 100644 --- a/src/data/shared.ts +++ b/src/data/shared.ts @@ -18,7 +18,7 @@ export const Thesis = ImageButtonFactory(cvIcon, 'Download thesis', { }); export const Youtube = ImageButtonFactory(youtubeIcon, 'Open on YouTube'); -export const CV = ImageAnchorFactory(cvIcon, 'Download my CV'); +export const CV = ImageAnchorFactory(cvIcon, 'Download my CV', { shouldDownload: true }); export const GitHubLink = ImageAnchorFactory(gitHubIcon, 'Find me on GitHub'); export const LinkedIn = ImageAnchorFactory(linkedInIcon, 'Find me on LinkedIn'); export const Email = ImageAnchorFactory(emailIcon, 'andras@schmelczer.dev');