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 f746d0e commit 7e9184aCopy full SHA for 7e9184a
src/lib/icon.ts
@@ -7,6 +7,7 @@ import iconTabs from './icon-tabs';
7
import { getFileItemInnerTitleEl, getFileItemTitleEl } from '@app/util';
8
import {
9
Icon,
10
+ NATIVE_LUCIDE_ICON_PACK_NAME,
11
extractIconToIconPack,
12
getAllIconPacks,
13
getIconFromIconPack,
@@ -36,6 +37,10 @@ const checkMissingIcons = async (
36
37
const iconPrefix = iconNameWithPrefix.substring(0, iconNextIdentifier);
38
const iconPackName = getIconPackNameByPrefix(iconPrefix);
39
40
+ if (iconPackName === NATIVE_LUCIDE_ICON_PACK_NAME) {
41
+ return;
42
+ }
43
+
44
const icon = getIconFromIconPack(iconPackName, iconPrefix, iconName);
45
if (!icon) {
46
logger.error(
0 commit comments