Skip to content

Commit 757fd32

Browse files
committedMar 7, 2025
refactor(sanity): remove unused isVersion property (#8775)
This property was unused, and computed incorrectly, referring to `doc.id` instead of `doc._id`.
1 parent a115c35 commit 757fd32

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed
 

‎packages/sanity/src/structure/panes/documentList/helpers.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from '@sanity/types'
1111
import * as PathUtils from '@sanity/util/paths'
1212
import {type ExprNode, parse} from 'groq-js'
13-
import {collate, getPublishedId, isVersionId} from 'sanity'
13+
import {collate, getPublishedId} from 'sanity'
1414

1515
import {type DocumentListPaneItem, type SortOrder} from './types'
1616

@@ -21,14 +21,12 @@ export function getDocumentKey(value: DocumentListPaneItem, index: number): stri
2121
export function removePublishedWithDrafts(documents: SanityDocumentLike[]): DocumentListPaneItem[] {
2222
return collate(documents).map((entry) => {
2323
const doc = entry.draft || entry.published || entry.versions[0]
24-
const isVersion = doc?.id && isVersionId(doc._id)
2524
const hasDraft = Boolean(entry.draft)
2625

2726
return {
2827
...doc,
2928
hasPublished: !!entry.published,
3029
hasDraft,
31-
isVersion,
3230
}
3331
}) as any
3432
}

‎packages/sanity/src/structure/panes/documentList/types.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {type SearchSort} from 'sanity'
44
export interface DocumentListPaneItem extends SanityDocumentLike {
55
hasPublished: boolean
66
hasDraft: boolean
7-
isVersion: boolean
87
}
98

109
export type SortOrder = {

0 commit comments

Comments
 (0)
Please sign in to comment.