Mettre à jour src/custom-comands.js

This commit is contained in:
Gregan 2022-03-24 14:24:11 +00:00
parent 5fd202f06e
commit 9b56936372

View File

@ -53,7 +53,7 @@ export function setDarkMode(value) {
export function getCV() {
const a = document.createElement("a");
a.href = "resources/CV - Greg Lebreton.pdf";
a.setAttribute("download", "CV - Greg Lebreton.pdf.pdf");
a.setAttribute("download", "CV - Greg Lebreton.pdf");
a.click();
}