From 66b1c662c9ae8c05ef5232a407aef463d7ef379a Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 4 Jun 2026 14:01:30 -0400 Subject: [PATCH] fix(tui): show correct push heartbeat curl command in detail panel --- internal/tui/view_detail.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/view_detail.go b/internal/tui/view_detail.go index 9053225..25b5115 100644 --- a/internal/tui/view_detail.go +++ b/internal/tui/view_detail.go @@ -107,7 +107,7 @@ func (m Model) viewDetailPanel() string { row("Type", site.Type) if site.Type == "push" && site.Token != "" { row("Token", site.Token) - row("Push URL", "/api/push/"+site.Token) + row("Push", "curl -X POST -H 'Authorization: Bearer "+site.Token+"' /api/push") } if site.URL != "" { row("URL", site.URL)