Update pinInteractions.ts

This commit is contained in:
Daniel Fiuk 2026-04-26 15:13:41 -06:00
parent 8931ca02e3
commit 52640debc7

View file

@ -405,7 +405,11 @@ class PinInteractionManager implements PinInteractionController {
]);
for (const key of Object.keys(frontMatter)) {
if (skip.has(key)) continue;
push(key, (frontMatter as Record<string, unknown>)[key]);
const value = (frontMatter as Record<string, unknown>)[key];
if (typeof value === "string") {
push(key, value);
}
}
return entries;