diff --git a/Passepartout-iOS/Scenes/Organizer/ImportedHostsViewController.swift b/Passepartout-iOS/Scenes/Organizer/ImportedHostsViewController.swift index 12df0aff..db86d754 100644 --- a/Passepartout-iOS/Scenes/Organizer/ImportedHostsViewController.swift +++ b/Passepartout-iOS/Scenes/Organizer/ImportedHostsViewController.swift @@ -30,8 +30,8 @@ import SwiftyBeaver private let log = SwiftyBeaver.self class ImportedHostsViewController: UITableViewController { - private lazy var pendingConfigurationURLs = TransientStore.shared.service.pendingConfigurationURLs() - + private lazy var pendingConfigurationURLs = TransientStore.shared.service.pendingConfigurationURLs().sorted { $0.normalizedFilename < $1.normalizedFilename } + private var parsedFile: ParsedFile? weak var wizardDelegate: WizardDelegate?