Fix folder icon

This commit is contained in:
DrMint 2024-05-11 00:33:15 +02:00
parent ecfc2cf58b
commit f75144540a
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ const { getLocalizedUrl, getLocalizedMatch } = await getI18n(Astro.locals.curren
folders.map(({ slug, translations, icon }) => ( folders.map(({ slug, translations, icon }) => (
<FolderCard <FolderCard
title={getLocalizedMatch(translations).name} title={getLocalizedMatch(translations).name}
icon={icon ? `material-symbols:${icon}` : undefined} icon={icon}
href={getLocalizedUrl(`/folders/${slug}`)} href={getLocalizedUrl(`/folders/${slug}`)}
/> />
)) ))