fix: set default state of toc to false

This commit is contained in:
p-sw 2024-06-03 13:59:51 +09:00
parent 24859da9ff
commit dc2c02a41b

View File

@ -22,7 +22,7 @@ function RecursivelyToc({ toc }: { toc: Toc }) {
? true ? true
: location.hash.length > 0 : location.hash.length > 0
? location.hash === `#${tocEntry.id}` ? location.hash === `#${tocEntry.id}`
: true : false
} }
> >
<a href={`#${tocEntry.id}`}>{tocEntry.value}</a> <a href={`#${tocEntry.id}`}>{tocEntry.value}</a>