feat!: make Init return the model

This commit is contained in:
Ayman Bagabas
2024-09-10 14:04:36 -04:00
parent a93bfef532
commit 8972b56c9d
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -236,8 +236,8 @@ func (m Model) readDir(path string, showHidden bool) tea.Cmd {
}
// Init initializes the file picker model.
func (m Model) Init() tea.Cmd {
return m.readDir(m.CurrentDirectory, m.ShowHidden)
func (m Model) Init() (Model, tea.Cmd) {
return m, m.readDir(m.CurrentDirectory, m.ShowHidden)
}
// Update handles user interactions within the file picker model.