diff --git a/MVMCoreUI/Atomic/Templates/MoleculeListTemplate.swift b/MVMCoreUI/Atomic/Templates/MoleculeListTemplate.swift index 499cc88c..f0bbcfda 100644 --- a/MVMCoreUI/Atomic/Templates/MoleculeListTemplate.swift +++ b/MVMCoreUI/Atomic/Templates/MoleculeListTemplate.swift @@ -335,12 +335,8 @@ open class MoleculeListTemplate: ThreeLayerTableViewController, TemplateProtocol }) != nil }) - if #available(iOS 15.0, *) { - snapshot.reconfigureItems(updatedListItems) - } else { - // A full reload can cause a flicker / animation. Better to avoid with above reconfigure method. - snapshot.reloadItems(updatedListItems) - } + // A full reload can cause a flicker / animation. Better to avoid with above reconfigure method. + snapshot.reconfigureItems(updatedListItems) dataSource.defaultRowAnimation = .fade dataSource.apply(snapshot) { [self] in