mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-01 23:48:33 +00:00
fix: Level: Error Event (type=error) captured as promise rejection
This commit is contained in:
@@ -196,7 +196,9 @@ export function useDataFetch({
|
||||
|
||||
clearCache(Math.max(0, start - BUFFER_SIZE), Math.min(totalRows.value, end + BUFFER_SIZE))
|
||||
|
||||
debouncedFetchChunks(chunksToFetch, firstChunkId)
|
||||
debouncedFetchChunks(chunksToFetch, firstChunkId).catch((error) => {
|
||||
console.error('Error fetching chunks:', error)
|
||||
})
|
||||
}
|
||||
|
||||
const rafId = ref<number | null>(null)
|
||||
|
||||
Reference in New Issue
Block a user