[ios] Fix: New bookmark list placement

Signed-off-by: narwalayush4 <96654849+narwalayush4@users.noreply.github.com>
This commit is contained in:
narwalayush4 2024-09-23 23:41:05 +05:30 committed by Viktor Havaka
parent 17ef49e280
commit 5433ca59cc

View file

@ -128,8 +128,8 @@ extension BMCDefaultViewModel {
return
}
categories.append(manager.category(withId: manager.createCategory(withName: name)))
view?.insert(at: [IndexPath(row: categories.count - 1, section: section)])
categories.insert(manager.category(withId: manager.createCategory(withName: name)), at: 0)
view?.insert(at: [IndexPath(row: 0, section: section)])
}
func deleteCategory(at index: Int) {