From f6450663ac4b68f42950aabe956d84b8519b03af Mon Sep 17 00:00:00 2001 From: Robert Kossessa Date: Thu, 30 May 2024 13:17:49 +0200 Subject: [PATCH] FIX: Increase profile fetch delay --- src/renderer/src/deviceStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/deviceStore.ts b/src/renderer/src/deviceStore.ts index 00d1f7f..ab3f22c 100644 --- a/src/renderer/src/deviceStore.ts +++ b/src/renderer/src/deviceStore.ts @@ -719,7 +719,7 @@ export const initializeDevices = () => { setTimeout(function timer() { console.log('Requesting profile', profileName) nanoIpc.send(deviceid, JSON.stringify({ profile: profileName })) - }, i * 10) + }, i * 15) }) } if (update.current !== undefined) {