From 45b806f3b1e6db21f28bc17ae8cb62d4631112ed Mon Sep 17 00:00:00 2001 From: Carlo Zottmann Date: Thu, 20 Jun 2024 17:26:47 +0200 Subject: [PATCH] [CHG] Adjusts the deferrer timeout lengths --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 0a1eb98..b9d00a1 100644 --- a/src/main.ts +++ b/src/main.ts @@ -135,11 +135,11 @@ export default class Mononote extends Plugin { if (hasEphemeralState) { targetToFocus.setEphemeralState(ephemeralState); } - }, 10); + }, 100); // Resolve the promise. resolve(); - }, 50); + }, 100); }); }