From 52640debc7f71f408bc2d710caa3a8fb3acf13ca Mon Sep 17 00:00:00 2001 From: Daniel Fiuk Date: Sun, 26 Apr 2026 15:13:41 -0600 Subject: [PATCH] Update pinInteractions.ts --- src/pinInteractions.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pinInteractions.ts b/src/pinInteractions.ts index 41d1d74..6b52889 100644 --- a/src/pinInteractions.ts +++ b/src/pinInteractions.ts @@ -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)[key]); + const value = (frontMatter as Record)[key]; + + if (typeof value === "string") { + push(key, value); + } } return entries;