[bug] pairing was triggered by any process update

This commit is contained in:
NicolasCantu 2025-02-11 23:24:20 +01:00
parent 939c640e8f
commit 4225f41ca0

View File

@ -667,10 +667,10 @@ export default class Services {
} catch (e) { } catch (e) {
console.error('Failed to save diffs to db:', e); console.error('Failed to save diffs to db:', e);
} }
} if (!isPaired) {
if (!isPaired) { console.log(updatedProcess);
console.log(updatedProcess); await this.openPairingConfirmationModal(updatedProcess.current_process.states[0]);
await this.openPairingConfirmationModal(updatedProcess.current_process.states[0]); }
} }
} }