fix: resolve duplicate identifier in cc-graph-shapes, useMemo import in CCGraphNavPanel

This commit is contained in:
CC Worker
2026-06-01 01:36:37 +00:00
parent 6610abbd72
commit 96db086ecb
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -117,9 +117,9 @@ export class NavigationSnapshotService {
try {
if (editor) {
loadSnapshot(editor.store, snapshotCopy as Parameters<typeof loadSnapshot>[1]);
loadSnapshot(editor.store, snapshotCopy as any);
} else {
loadSnapshot(store, snapshotCopy as Parameters<typeof loadSnapshot>[1]);
loadSnapshot(store, snapshotCopy as any);
}
logger.debug('snapshot-service', '✅ Snapshot loaded successfully');
} catch (err) {