Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/src/routes/package/[name]/(package).tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Page: Component = () => {
return cachedData()?.primitives ?? dataResource()?.primitives;
},
get stage() {
return cachedData()?.stage ?? dataResource()?.stage;
return cachedData()?.primitive?.stage ?? dataResource()?.primitive?.stage;
},
get readme() {
return dataResource()?.readme;
Expand All @@ -65,7 +65,7 @@ const Page: Component = () => {
style={{ "padding-top": `${PRIMITIVE_PAGE_PADDING_TOP}px` }}
>
<div class="bg-page-main-bg rounded-3xl p-3 sm:p-8">
<div class="mb-[90px] flex items-center justify-between gap-[30px] text-[#232324] dark:text-white sm:gap-[100px]">
<div class="mb-[90px] flex items-center justify-between gap-[30px] text-[#232324] sm:gap-[100px] dark:text-white">
<Heading name={data.name} formattedName={formattedName()} />
</div>

Expand Down
Loading