From bd857385d3c726f6d6f9ea0fb8179ee12a5324eb Mon Sep 17 00:00:00 2001 From: popaprozac Date: Wed, 19 Mar 2025 21:51:57 -0700 Subject: [PATCH] fix err message --- v3/pkg/services/notifications/notifications_darwin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/pkg/services/notifications/notifications_darwin.go b/v3/pkg/services/notifications/notifications_darwin.go index d6eee5464..05ca217c7 100644 --- a/v3/pkg/services/notifications/notifications_darwin.go +++ b/v3/pkg/services/notifications/notifications_darwin.go @@ -256,7 +256,7 @@ func (ns *Service) RemoveNotificationCategory(categoryId string) error { return nil case <-ctx.Done(): cleanupChannel(id) - return fmt.Errorf("category registration timed out: %w", ctx.Err()) + return fmt.Errorf("category removal timed out: %w", ctx.Err()) } }