1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

Remove return value of IPatchExplorerContext.Render, RenderAndFocus, and NavigateTo

This commit is contained in:
Stefan Haller
2024-09-04 13:57:01 +02:00
parent 5446683881
commit 8edcd71234
6 changed files with 16 additions and 19 deletions

View File

@ -329,7 +329,8 @@ func (self *MergeConflictsController) withRenderAndFocus(f func() error) func()
return err
}
return self.context().RenderAndFocus()
self.context().RenderAndFocus()
return nil
})
}