We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1254f48 commit 5c3d490Copy full SHA for 5c3d490
packages/web/src/components/Share.tsx
@@ -321,6 +321,7 @@ export default function Share(props: {
321
const filteredParts = createMemo(() =>
322
msg.parts.filter((x, index) => {
323
if (x.type === "step-start" && index > 0) return false
324
+ if (x.type === "step-finish") return false
325
if (x.type === "text" && x.synthetic === true) return false
326
if (x.type === "tool" && x.tool === "todoread") return false
327
if (x.type === "text" && !x.text) return false
0 commit comments