We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a62507 commit 3cbe0c7Copy full SHA for 3cbe0c7
app/src/composables/useUpstreamStatus.ts
@@ -10,16 +10,6 @@ export function useUpstreamStatus(namespaceId?: Ref<number | undefined>) {
10
const nodeStore = useNodeAvailabilityStore()
11
const nodeGroupStore = useNodeGroupStore()
12
13
- // Initialize stores on mount
14
- onMounted(() => {
15
- proxyStore.startMonitoring()
16
- nodeGroupStore.initialize()
17
- })
18
-
19
- onUnmounted(() => {
20
- proxyStore.stopMonitoring()
21
22
23
// Check if should show multi-node display based on group configuration
24
const shouldShowMultiNodeDisplay = computed(() => {
25
if (!namespaceId?.value) {
0 commit comments