Skip to content

Commit 678398b

Browse files
committed
Fix tree hover actions undefined tooltip reference
1 parent dcb4057 commit 678398b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

components/PromptTreeItem.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,6 @@ const DocumentTreeItem: React.FC<DocumentTreeItemProps> = (props) => {
536536
activeDocumentId={activeDocumentId}
537537
canMoveUp={index > 0}
538538
canMoveDown={index < node.children.length - 1}
539-
copyContentTooltip={copyContentTooltip}
540539
/>
541540
))}
542541
</ul>
@@ -545,4 +544,4 @@ const DocumentTreeItem: React.FC<DocumentTreeItemProps> = (props) => {
545544
);
546545
};
547546

548-
export default DocumentTreeItem;
547+
export default DocumentTreeItem;

0 commit comments

Comments
 (0)