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