mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add some debug info
This commit is contained in:
parent
415c38ef64
commit
94f2b5eda1
1 changed files with 7 additions and 0 deletions
|
|
@ -122,9 +122,14 @@ export function LibraryContainer(props: LibraryContainerProps): JSX.Element {
|
|||
fetchNextPage,
|
||||
fetchPreviousPage,
|
||||
hasNextPage,
|
||||
status,
|
||||
error: fetchItemsError,
|
||||
} = useGetLibraryItems(props.folder ?? 'home', props.folder, queryInputs)
|
||||
|
||||
console.log(
|
||||
`status ${status}, isLoading: ${isLoading}, isFetching: ${isFetching}`
|
||||
)
|
||||
|
||||
useEffect(() => {
|
||||
if (queryValue.startsWith('#')) {
|
||||
debouncedFetchSearchResults(
|
||||
|
|
@ -1022,6 +1027,8 @@ export function LibraryItemsLayout(
|
|||
isSessionStorage: false,
|
||||
})
|
||||
|
||||
console.log('props.isValidating: ', props.isValidating)
|
||||
|
||||
return (
|
||||
<>
|
||||
<VStack
|
||||
|
|
|
|||
Loading…
Reference in a new issue