Skip to content

Commit 45bfaa4

Browse files
authored
Merge branch 'staging' into add-create-repo
2 parents db56dcd + 1f6c14b commit 45bfaa4

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

app/components/dataPanel.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,12 @@ const excludedProperties = [
3535

3636
export default function DataPanel({ obj, setObj, url }: Props) {
3737

38-
debugger
39-
4038
if (!obj) return null;
4139

4240
const type = "category" in obj
4341
const label = type ? `${obj.category}: ${obj.name}` : obj.label
4442
const object = Object.entries(obj).filter(([k]) => !excludedProperties.includes(k))
4543

46-
console.log(obj)
47-
4844
return (
4945
<div data-name="node-details-panel" className="z-20 absolute -top-10 left-20 bg-[#343434] text-white shadow-lg rounded-lg flex flex-col max-h-[88%] max-w-[56%] overflow-hidden" >
5046
<header className="bg-[#191919] flex items-center gap-8 justify-between p-8">

0 commit comments

Comments
 (0)