Skip to content

Commit 62970bf

Browse files
committed
remove test for active hash
1 parent ca83f2b commit 62970bf

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/components/TableOfContents/ItemsList.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,11 @@ const ItemsList = ({
1515
items,
1616
depth,
1717
maxDepth,
18-
// activeHash,
18+
activeHash,
1919
...rest
2020
}: ItemsListProps) => {
2121
if (depth > maxDepth) return null
2222

23-
// FIXME: TEST
24-
const activeHash = "#web3"
25-
2623
return (
2724
<>
2825
{items.map((item, index) => {

0 commit comments

Comments
 (0)