From 35f1097f473e51be82f68e93ea2db48dd1c98519 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 16 Mar 2026 03:55:40 +0200 Subject: Fix mixed pointer/value receivers on appconfig.App Change all value receivers on App to pointer receivers for consistency. Update callers that pass App values to pass pointers where needed for the actionConfig interface. Co-Authored-By: Claude Opus 4.6 --- internal/appconfig/config_validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/appconfig/config_validate.go') diff --git a/internal/appconfig/config_validate.go b/internal/appconfig/config_validate.go index f5e698f..19cfcd0 100644 --- a/internal/appconfig/config_validate.go +++ b/internal/appconfig/config_validate.go @@ -6,7 +6,7 @@ import ( ) // Validate checks custom actions and tmux settings for duplicates and consistency. -func (a App) Validate() error { +func (a *App) Validate() error { if err := validateCustomActions(a.CustomActions); err != nil { return err } -- cgit v1.2.3