diff options
author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-26 16:31:57 +0100 |
---|---|---|
committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-26 16:31:57 +0100 |
commit | 6dbef7946abd350bbfb5cfe21d5f6c1b5e969011 (patch) | |
tree | 4c4ed69c5dee494b274c49bf985ff33ad5e79701 /apps/website/src/components/logos | |
parent | 2df2871c9a5881f53c17d37d05fe409b11bb19a6 (diff) | |
download | Nexus-6dbef7946abd350bbfb5cfe21d5f6c1b5e969011.tar.gz Nexus-6dbef7946abd350bbfb5cfe21d5f6c1b5e969011.tar.bz2 Nexus-6dbef7946abd350bbfb5cfe21d5f6c1b5e969011.zip |
Update Icon Types + fix type issues in oneconfig page
Diffstat (limited to 'apps/website/src/components/logos')
-rw-r--r-- | apps/website/src/components/logos/Logo.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/website/src/components/logos/Logo.astro b/apps/website/src/components/logos/Logo.astro index 52bfe34..c2333e1 100644 --- a/apps/website/src/components/logos/Logo.astro +++ b/apps/website/src/components/logos/Logo.astro @@ -19,7 +19,7 @@ try { if (logo === undefined) return; const dir = '../../../public/media'; - svg = (await import(`${dir}/${logo.replaceAll('.', '/')}.svg?raw` /* @vite-ignore */)).default; + svg = (await import(/* @vite-ignore */ `${dir}/${logo.replaceAll('.', '/')}.svg?raw`)).default; if (svg === undefined) return; |