remove comments

This commit is contained in:
Triston Armstrong 2024-02-17 11:54:32 -06:00
parent 9fc0562b61
commit 76509ea487
2 changed files with 4 additions and 20 deletions

View File

@ -36,11 +36,6 @@ export default function FolderTree(props) {
defaultExpandIcon={<ChevronRightIcon />}
onNodeSelect={(event, nodIds) => {
const currentNode = binaryFind(props.flattenNodes, nodIds);
// const currentNode = props.flattenNodes.find((aNode) => {
// console.log(aNode.id);
// return aNode.id === nodIds;
// });
console.log({ currentNode });
if (currentNode != null && currentNode.routePath != null) {
router.push(currentNode.routePath);
}
@ -60,16 +55,8 @@ function binaryFind(sourceList, valToFind) {
while (rightIndex >= leftIndex) {
middleIndex = leftIndex + Math.floor((rightIndex - leftIndex) / 2);
const currentValue = sourceList[middleIndex];
console.log(currentValue);
// If the element is present at the middle
// itself
if (currentValue.id == valToFind) return currentValue;
// If element is smaller than mid, then
// it can only be present in left subarray
if (currentValue.id > valToFind) rightIndex = middleIndex - 1;
// Else the element can only be present
// in right subarray
else leftIndex = middleIndex + 1;
}

View File

@ -1,11 +1,8 @@
export const siteTitle = 'Digital Backroom - An Internet Archive'
export const siteTitle = "Digital Backroom - An Internet Archive";
export default function Layout({ children }) {
return (
<div >
<main >
{children}
</main>
<div>
<main>{children}</main>
</div>
)
);
}