diff --git a/iOS/ShareExtension/ShareFolderPickerController.swift b/iOS/ShareExtension/ShareFolderPickerController.swift index 0385159c6..abec0b370 100644 --- a/iOS/ShareExtension/ShareFolderPickerController.swift +++ b/iOS/ShareExtension/ShareFolderPickerController.swift @@ -37,6 +37,8 @@ class ShareFolderPickerController: UITableViewController { cell.textLabel?.text = pickerData?.containerNames[indexPath.row] ?? "" if pickerData?.containers[indexPath.row] === selectedContainer { cell.accessoryType = .checkmark + } else { + cell.accessoryType = .none } return cell }