Skip to content

Commit

Permalink
Disable accent color
Browse files Browse the repository at this point in the history
  • Loading branch information
javizqh committed Jan 10, 2025
1 parent 6d97b12 commit b88fb43
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function TreeNode({
}
}
}, []);

const handleClick = () => {
if (node.is_dir) {
setCollapsed(!isCollapsed);
Expand Down Expand Up @@ -87,7 +87,8 @@ function TreeNode({
<div
className="bt-accent-color"
style={{
backgroundColor: getActionFrame(node.name.replace(".py", "")) ? getActionFrame(node.name.replace(".py", ""))?.getColor() : "none",
// backgroundColor: getActionFrame(node.name.replace(".py", "")) ? getActionFrame(node.name.replace(".py", ""))?.getColor() : "none",
backgroundColor: "none",
}}
/>
)}
Expand Down

0 comments on commit b88fb43

Please sign in to comment.