fix other linting errors
This commit is contained in:
parent
61167b8a7d
commit
c57a917003
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ func (e ErrorComponent) Init() tea.Cmd {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (e ErrorComponent) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
||||
func (e ErrorComponent) Update(_ tea.Msg) (tea.Model, tea.Cmd) {
|
||||
return e, nil
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ func (h headerComponent) Init() tea.Cmd {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (h headerComponent) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
||||
func (h headerComponent) Update(_ tea.Msg) (tea.Model, tea.Cmd) {
|
||||
return h, nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue