fix other linting errors

This commit is contained in:
samuel 2023-06-18 17:48:53 +02:00
parent 61167b8a7d
commit c57a917003
2 changed files with 2 additions and 2 deletions

View file

@ -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
}

View file

@ -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
}