From a1fdf3f7cd721d47a1073296a72490232212a04b Mon Sep 17 00:00:00 2001 From: Matt Low Date: Sat, 21 Sep 2024 02:46:51 +0000 Subject: [PATCH] Deprecation fix --- pkg/tui/views/chat/view.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tui/views/chat/view.go b/pkg/tui/views/chat/view.go index 26da778..ba84a87 100644 --- a/pkg/tui/views/chat/view.go +++ b/pkg/tui/views/chat/view.go @@ -271,7 +271,7 @@ func (m *Model) footerView() string { segmentStyle := lipgloss.NewStyle().PaddingLeft(1).PaddingRight(1).Faint(true) segmentSeparator := "|" - savingStyle := segmentStyle.Copy().Bold(true) + savingStyle := segmentStyle.Bold(true) saving := "" if m.persistence { saving = savingStyle.Foreground(lipgloss.Color("2")).Render("✅💾")