Skip to content

Commit

Permalink
fix: remove copy call
Browse files Browse the repository at this point in the history
  • Loading branch information
mistakenelf committed May 26, 2024
1 parent 83f2abb commit bef3a70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csv/csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const (
var (
HeaderStyle = lipgloss.NewStyle().Foreground(purple).Bold(true).Align(lipgloss.Center)
CellStyle = lipgloss.NewStyle().Padding(0, 1).Width(14)
OddRowStyle = CellStyle.Copy().Foreground(gray)
EvenRowStyle = CellStyle.Copy().Foreground(lightGray)
OddRowStyle = CellStyle.Foreground(gray)
EvenRowStyle = CellStyle.Foreground(lightGray)
)

// Model represents the properties of a code bubble.
Expand Down

0 comments on commit bef3a70

Please sign in to comment.