@haex-space/vault-sdk 2.5.91 → 2.5.93

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.
@@ -1311,7 +1311,13 @@ async function setupTauriEventListeners(ctx, log, onEvent, onContextChange) {
1311
1311
  console.error("[HaexVault SDK] Failed to setup sync tables updated listener:", error);
1312
1312
  log("Failed to setup sync tables updated listener:", error);
1313
1313
  }
1314
- await setupLocalSendEventListeners(log, onEvent);
1314
+ console.log("[HaexVault SDK] About to setup LocalSend event listeners");
1315
+ try {
1316
+ await setupLocalSendEventListeners(log, onEvent);
1317
+ console.log("[HaexVault SDK] LocalSend event listeners setup complete");
1318
+ } catch (error) {
1319
+ console.error("[HaexVault SDK] Failed to setup LocalSend event listeners:", error);
1320
+ }
1315
1321
  }
1316
1322
  async function setupLocalSendEventListeners(log, onEvent) {
1317
1323
  const { listen } = getTauriEvent();