diff --git a/iphone/Maps/Bookmarks/Categories/BMCViewModel/BMCDefaultViewModel.swift b/iphone/Maps/Bookmarks/Categories/BMCViewModel/BMCDefaultViewModel.swift index bc96e12c38..42baa86d67 100644 --- a/iphone/Maps/Bookmarks/Categories/BMCViewModel/BMCDefaultViewModel.swift +++ b/iphone/Maps/Bookmarks/Categories/BMCViewModel/BMCDefaultViewModel.swift @@ -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) {