Only wait in appstore view if this is the first time we open it

This commit is contained in:
Johannes Zellner
2025-12-10 17:29:02 +01:00
parent 49f8b3b7f6
commit 2c8dc3e6a7

View File

@@ -183,7 +183,10 @@ async function getDomains() {
onActivated(async () => {
setItemWidth();
await getAppList();
// only wait for applisting if we don't have one yet
if (apps.value.length) getAppList();
else await getAppList();
ready.value = true;
await getDomains();