Skip to content

Commit 847ac00

Browse files
committed
fix: drop idle status (caused flash for client-side nav)
1 parent 50ef48e commit 847ac00

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

app/pages/package/[[org]]/[name].vue

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -703,11 +703,7 @@ const showSkeleton = shallowRef(false)
703703
</ButtonBase>
704704
</DevOnly>
705705
<main class="container flex-1 w-full py-8">
706-
<PackageSkeleton
707-
v-if="
708-
!isHydratingWithoutPayload && (showSkeleton || status === 'idle' || status === 'pending')
709-
"
710-
/>
706+
<PackageSkeleton v-if="!isHydratingWithoutPayload && (showSkeleton || status === 'pending')" />
711707

712708
<article
713709
v-else-if="(status === 'success' && pkg) || isHydratingWithoutPayload"

0 commit comments

Comments
 (0)