From 123b9db6a9ca4e5df7a7d9aa36635ef81ed2d1ad Mon Sep 17 00:00:00 2001 From: hezixu Date: Wed, 25 Mar 2026 18:03:27 +0800 Subject: [PATCH] fix: correct struct field alignment for gci --- pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index fec30a374..d0e424c2c 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -382,7 +382,7 @@ type TypingConfig struct { // PlaceholderConfig controls placeholder message behavior (Phase 10). type PlaceholderConfig struct { - Enabled bool `json:"enabled"` + Enabled bool `json:"enabled"` Text FlexibleStringSlice `json:"text,omitempty"` }