From fd74850cfd303ecb029d116a303b9f2303c340a8 Mon Sep 17 00:00:00 2001 From: Alan Buscaglia Date: Fri, 17 Oct 2025 15:00:05 +0200 Subject: [PATCH] fix: add missing 'provider' property to ProviderEntity interface --- ui/types/providers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/types/providers.ts b/ui/types/providers.ts index 5068ed6d67..1122754368 100644 --- a/ui/types/providers.ts +++ b/ui/types/providers.ts @@ -72,6 +72,7 @@ export interface ProviderProps { export interface ProviderEntity { uid: string; alias: string | null; + provider: ProviderType; } export interface ProviderConnectionStatus {