Skip to content

Commit

Permalink
fix: issue with bad edit collection icon
Browse files Browse the repository at this point in the history
  • Loading branch information
jackMort committed Nov 27, 2024
1 parent 2d5edd4 commit 7e06d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/collections/header.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func (h Header) Update(msg tea.Msg) (tea.Model, tea.Cmd) {

func (h Header) View() string {
icon := ""
if h.mode == "edit" {
if h.mode == "Edit" {
icon = "󰷎"
}
return lipgloss.JoinVertical(
Expand Down

0 comments on commit 7e06d30

Please sign in to comment.