@pitcher/canvas-ui 2026.1.20-113923-beta → 2026.1.20-115623-beta

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/canvas-ui.js CHANGED
@@ -110489,14 +110489,7 @@ function init({
110489
110489
  (folder) => !state$2.folderCache[folder.id] && folder.parent_folder_id
110490
110490
  );
110491
110491
  if (foldersToCache.length > 0) {
110492
- const parentIdsToFetch = Array.from(
110493
- new Set(foldersToCache.map((f) => f.parent_folder_id).filter(Boolean))
110494
- ).filter((parentId) => {
110495
- const hasUncachedChildren = foldersToCache.some(
110496
- (f) => f.parent_folder_id === parentId && !state$2.folderCache[f.id]
110497
- );
110498
- return hasUncachedChildren;
110499
- });
110492
+ const parentIdsToFetch = Array.from(new Set(foldersToCache.map((f) => f.parent_folder_id).filter(Boolean)));
110500
110493
  await Promise.all(
110501
110494
  parentIdsToFetch.map(async (parentId) => {
110502
110495
  try {