From 4ce3cd189a59a740c2150fc92b4ada3f58685591 Mon Sep 17 00:00:00 2001 From: "blink-so[bot]" <211532188+blink-so[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 05:44:46 +0000 Subject: [PATCH] fix: remove extra blank line to pass terraform fmt check Terraform fmt requires consistent spacing in resource blocks. --- registry/coder/modules/agentapi/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder/modules/agentapi/main.tf b/registry/coder/modules/agentapi/main.tf index 455d4739..d81ddea2 100644 --- a/registry/coder/modules/agentapi/main.tf +++ b/registry/coder/modules/agentapi/main.tf @@ -246,7 +246,7 @@ resource "coder_app" "agentapi_cli" { resource "coder_ai_task" "agentapi" { count = var.enable_tasks ? 1 : 0 - + sidebar_app { id = coder_app.agentapi_web.id }