Add empty AST cache file for version 0.8.44 with non-object root data
This commit is contained in:
@@ -4,21 +4,12 @@ function Pageguide({ list }) {
|
||||
{list.map((item, idx) => (
|
||||
<li key={idx} className="flex items-center justify-start gap-1">
|
||||
<h2
|
||||
className={`text-[16px] font-normal
|
||||
${
|
||||
list.length > idx + 1
|
||||
? "text-[#9B9B9B]"
|
||||
: "text-[#525252]"
|
||||
}
|
||||
`}
|
||||
className={`text-[16px] font-normal ${ list.length > idx + 1 ? "text-[#9B9B9B]" : "text-[#525252]" } `}
|
||||
>
|
||||
{item}
|
||||
</h2>
|
||||
<span
|
||||
className={`
|
||||
text-[#9B9B9B] text-[16px] font-normal
|
||||
${list.length > idx + 1 ? "flex" : "hidden"}
|
||||
`}
|
||||
className={` text-[#9B9B9B] text-[16px] font-normal ${list.length > idx + 1 ? "flex" : "hidden"} `}
|
||||
>
|
||||
{">"}
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user