We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb0e354 commit cf833a1Copy full SHA for cf833a1
src/icon-pack-manager.ts
@@ -405,9 +405,9 @@ export const loadIcon = async (
405
}
406
407
if (iconPack === NATIVE_LUCIDE_ICON_PACK_NAME) {
408
- // Icons already exist for Obsidian.
+ // Lucide icons already exist for Obsidian.
409
const lucideIcons = iconPacks.find(
410
- (iconPack) => iconPack.name === 'lucide-icons',
+ (iconPack) => iconPack.name === NATIVE_LUCIDE_ICON_PACK_NAME,
411
);
412
const icon = lucideIcons.icons.find((icon) => icon.name === name);
413
preloadedIcons.push(icon);
0 commit comments