File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -341,14 +341,15 @@ let default = (props: props) => {
341
341
342
342
let rightSidebar = switch props {
343
343
| Ok ({module_ : {items }}) if Js .Array2 .length (items ) > 0 =>
344
- let rightSidebar = <RightSidebar items />
345
344
<div className = "hidden xl:block lg:w-1/5 md:h-auto md:relative overflow-y-visible bg-white" >
346
345
<aside
347
346
className = "relative top-0 pl-4 w-full block md:top-16 md:pt-16 md:sticky border-l border-gray-20 overflow-y-auto pb-24 h-[calc(100vh-4.5rem)]" >
348
347
<div className = "hl-overline block text-gray-80 mt-16 mb-2" >
349
348
{"Types and values" -> React .string }
350
349
</div >
351
- <ul > {rightSidebar } </ul >
350
+ <ul >
351
+ <RightSidebar items />
352
+ </ul >
352
353
</aside >
353
354
</div >
354
355
| _ => React .null
You can’t perform that action at this time.
0 commit comments