share page hide step-finish events

This commit is contained in:
Dax Raad 2025-07-11 21:45:56 -04:00
parent 1254f48135
commit 5c3d490e59

View file

@ -321,6 +321,7 @@ export default function Share(props: {
const filteredParts = createMemo(() =>
msg.parts.filter((x, index) => {
if (x.type === "step-start" && index > 0) return false
if (x.type === "step-finish") return false
if (x.type === "text" && x.synthetic === true) return false
if (x.type === "tool" && x.tool === "todoread") return false
if (x.type === "text" && !x.text) return false