From a9d465017be43477f494d26719734a249a68cfad Mon Sep 17 00:00:00 2001 From: Natsumi Date: Sun, 1 Mar 2026 20:06:26 +1100 Subject: [PATCH] Debounce applyWorldDialogInstances --- src/stores/instance.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/stores/instance.js b/src/stores/instance.js index 9e5a1ba4..e12c7832 100644 --- a/src/stores/instance.js +++ b/src/stores/instance.js @@ -8,6 +8,7 @@ import { compareByDisplayName, compareById, compareByLocationAt, + debounce, displayLocation, getAvailablePlatforms, getBundleDateSize, @@ -734,6 +735,10 @@ export const useInstanceStore = defineStore('Instance', () => { } function applyWorldDialogInstances() { + debounce(applyWorldDialogInstancesDebounced, 100)(); + } + + function applyWorldDialogInstancesDebounced() { let ref; let instance; const D = worldStore.worldDialog;