diff --git a/ui/app/components/Simple.vue b/ui/app/components/Simple.vue index a7d0dda6..41a5c2ce 100644 --- a/ui/app/components/Simple.vue +++ b/ui/app/components/Simple.vue @@ -556,17 +556,6 @@ const showSettings = async (_: MouseEvent, callback: (() => void) | null = null) } } -const connectionStatusColor = computed(() => { - switch (socketStore.connectionStatus) { - case 'connected': - return 'has-text-success' - case 'connecting': - return 'has-text-warning fa-spin' - case 'disconnected': - default: - return 'has-text-danger' - } -})