We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2fbf3c commit 803a897Copy full SHA for 803a897
cli/src/components/message-block.tsx
@@ -84,7 +84,9 @@ export const MessageBlock = ({
84
return ''
85
}
86
const ancestorPrefix = ancestorBranchStates
87
- .map((ancestorIsLast) => (ancestorIsLast ? ' ' : '│ '))
+ // Skip first level of ancestors for less clutter
88
+ .slice(1)
89
+ .map(() => ' ')
90
.join('')
91
return `${ancestorPrefix}${isLastBranch ? '└ ' : '├ '}`
92
0 commit comments