Update pinInteractions.ts

This commit is contained in:
Daniel Fiuk 2026-04-26 15:10:22 -06:00
parent 7b5160c228
commit 8931ca02e3

View file

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