fix: remove extra blank line to pass terraform fmt check

Terraform fmt requires consistent spacing in resource blocks.
This commit is contained in:
blink-so[bot] 2025-09-05 05:44:46 +00:00
parent 41cf2c6fab
commit 4ce3cd189a

View File

@ -246,7 +246,7 @@ resource "coder_app" "agentapi_cli" {
resource "coder_ai_task" "agentapi" { resource "coder_ai_task" "agentapi" {
count = var.enable_tasks ? 1 : 0 count = var.enable_tasks ? 1 : 0
sidebar_app { sidebar_app {
id = coder_app.agentapi_web.id id = coder_app.agentapi_web.id
} }