feat: enable stricter type checking options

feat: make the app more fault tolerant
This commit is contained in:
2024-04-06 14:28:23 +02:00
parent bef51d2a7d
commit 2808973ad0
38 changed files with 152 additions and 121 deletions

View File

@@ -69,7 +69,7 @@ for (const icon of icons) {
.flatMap((it) => [...it])
.map((it) => it.codePointAt(0).toString(16));
const codePoint = config.codePoints[icon];
const codePoint = config.codePoints[icon ?? ""];
if (codePoint) {
glyphs.push(codePoint);
} else if (codePoints.length === 0) {