clicking into a page title shrinks the text. It should not shrink
{
let query = `[:find (pull ?e [:block/props])
:where
[?e :block/props ]
]`;
var result = window.roamAlphaAPI.q(query).flat();
var filteredResult = result.filter(word => "slider" in word["props"]);
console.log(filteredResult[0]);
}