diff --git a/apps/web/src/components/ObjectTree.tsx b/apps/web/src/components/ObjectTree.tsx index dcac417..daa8e6f 100644 --- a/apps/web/src/components/ObjectTree.tsx +++ b/apps/web/src/components/ObjectTree.tsx @@ -5,11 +5,11 @@ import { iconsForObject } from './objectIcons'; interface Props { nodes: ObjectTreeNode[]; - selectedGuid: string | null; - onSelect: (guid: string) => void; + selectedPath: string | null; + onSelect: (path: string) => void; } -export default function ObjectTree({ nodes, selectedGuid, onSelect }: Props) { +export default function ObjectTree({ nodes, selectedPath, onSelect }: Props) { return (