fix: over-eager cloud query from web components (#1506)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **Bug Fixes**
* Improved initialization logic to ensure cloud state is only loaded
when the connect plugin is installed, enhancing reliability during
startup.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Pujit Mehrotra
2025-07-11 14:16:53 -04:00
committed by GitHub
parent f34a33bc9f
commit 074370c42c

View File

@@ -1198,7 +1198,9 @@ export const useServerStore = defineStore('server', () => {
setTimeout(() => {
load();
loadCloudState();
if (connectPluginInstalled.value) {
loadCloudState();
}
}, 500);
onResult((result) => {