diff --git a/src/utils/exportUtils/exportCSS.ts b/src/utils/exportUtils/exportCSS.ts index 3bad94d938..f7f471fda3 100644 --- a/src/utils/exportUtils/exportCSS.ts +++ b/src/utils/exportUtils/exportCSS.ts @@ -25,7 +25,7 @@ const getExportCSS = async (): Promise => { stylesheets.push(e.href); } }); - let CSS: string; + let CSS = ""; for (const stylesheet of stylesheets) { const res = await fetch(stylesheet); const innerText = await res.text();