File tree 3 files changed +3
-3
lines changed
packages/sanity/src/structure/panes/documentList
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ interface DocumentListPaneContentProps {
46
46
layout ?: GeneralPreviewLayoutKey
47
47
loadingVariant ?: LoadingVariant
48
48
onListChange : ( ) => void
49
- onRetry ?: ( event : unknown ) => void
49
+ onRetry ?: ( ) => void
50
50
paneTitle : string
51
51
searchInputElement : HTMLInputElement | null
52
52
showIcons : boolean
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export type SortOrder = {
13
13
14
14
export interface QueryResult {
15
15
error : { message : string } | null
16
- onRetry ?: ( event : unknown ) => void
16
+ onRetry ?: ( ) => void
17
17
result : { documents : SanityDocumentLike [ ] } | null
18
18
}
19
19
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ interface DocumentListState {
38
38
isSearchReady : boolean
39
39
items : DocumentListPaneItem [ ]
40
40
onListChange : ( ) => void
41
- onRetry ?: ( event : unknown ) => void
41
+ onRetry ?: ( ) => void
42
42
}
43
43
44
44
const INITIAL_QUERY_RESULTS : QueryResult = {
You can’t perform that action at this time.
0 commit comments