Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion app/composables/useNpmRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export function useOrgPackages(orgName: MaybeRefOrGetter<string>) {
const packuments = await Promise.all(batch.map(name => fetchMinimalPackument(name)))

for (const pkg of packuments) {
if (pkg) {
if (pkg && pkg['dist-tags']) {
Comment thread
43081j marked this conversation as resolved.
results.push(packumentToSearchResult(pkg))
}
}
Expand Down