From b3ec7790587e073ec5fff505e2e865591e307502 Mon Sep 17 00:00:00 2001 From: mawkone Date: Sun, 14 Jun 2026 15:11:10 -0700 Subject: [PATCH] fix(logs): resolve missing deployment uuid in anatomy payload to fix build logs display --- vibn-frontend/lib/coolify.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vibn-frontend/lib/coolify.ts b/vibn-frontend/lib/coolify.ts index 7c37e5ff..8ff386aa 100644 --- a/vibn-frontend/lib/coolify.ts +++ b/vibn-frontend/lib/coolify.ts @@ -155,7 +155,8 @@ export interface CoolifyServer { } export interface CoolifyDeployment { - uuid: string; + id?: number; + deployment_uuid: string; status: string; created_at?: string; finished_at?: string;