Code cleanup (#719)

- Remove random call to `print`
- Remove double declaration of notifdService
This commit is contained in:
davfsa
2025-01-13 08:53:32 +01:00
committed by GitHub
parent fab3a8c3a1
commit 636f031b77
2 changed files with 4 additions and 5 deletions

View File

@@ -99,7 +99,7 @@ export function icon(name: string | null, fallback = icons.missing): string {
if (lookUpIcon(icon)) return icon;
print(`no icon substitute "${icon}" for "${name}", fallback: "${fallback}"`);
console.log(`no icon substitute "${icon}" for "${name}", fallback: "${fallback}"`);
return fallback;
}