@parqui/react 1.3.2 → 1.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -260,7 +260,8 @@ function useChunkLoader(sourceRef, metadataRef, mountedRef, mappingRef, genRef,
260
260
  sourceRowCacheRef.current.set(sourceIdx, result.rows[i]);
261
261
  }
262
262
  }
263
- } catch {
263
+ } catch (err) {
264
+ console.error("[parqui] chunk load error:", err);
264
265
  }
265
266
  });
266
267
  const cache = sourceRowCacheRef.current;
@@ -317,7 +318,8 @@ function useChunkLoader(sourceRef, metadataRef, mountedRef, mappingRef, genRef,
317
318
  tick();
318
319
  }
319
320
  }
320
- } catch {
321
+ } catch (err) {
322
+ console.error("[parqui] loadChunk error for chunk", chunkIndex, err);
321
323
  } finally {
322
324
  loadingChunksRef.current.delete(chunkIndex);
323
325
  }