Skip to content

Commit

Permalink
Address Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
olijeffers0n committed Feb 23, 2024
1 parent 2506571 commit 81b9f65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/paper/admin/reference/configuration/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ConfigurationStructureDiagram from '@site/src/components/ConfigurationStr

---

## Paper Configuration Files:
## Paper Configuration Files

<ConfigurationStructureDiagram/>

Expand Down
6 changes: 3 additions & 3 deletions src/components/ConfigurationStructureDiagram.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ const IndentationArrow: React.FC<IndentationArrowProps> = ({ level }) => {

return (
<span className={"indentation-arrow"}>
{level > 0 && "→".repeat(level)}
</span>
{level > 0 && "→".repeat(level)}
</span>
);
};

export default function ConfigurationStructureDiagram({}) {
export default function ConfigurationStructureDiagram() {
const [popupNode, setPopupNode] = useState<ExplorerNode | null>(null);

const renderNode = (node: ExplorerNode, level: number = 0) => {
Expand Down

0 comments on commit 81b9f65

Please sign in to comment.