Skip to content

Commit dad2b5c

Browse files
authored
Merge pull request #10 from d-date/fix-xcode-13
Fix availability for iOS 15
2 parents 1c7a788 + 61ab4d6 commit dad2b5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/DebugMenu/View/InAppDebuggerViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ extension InAppDebuggerViewController {
225225
>(elementKind: UICollectionView.elementKindSectionHeader) {
226226
[weak self] (headerView, elementKind, indexPath) in
227227
var configuration = headerView.defaultContentConfiguration()
228-
if #available(iOSApplicationExtension 15.0, *) {
228+
if #available(iOS 15.0, *) {
229229
#if compiler(>=5.5)
230230
configuration.text =
231231
self?.dataSource.sectionIdentifier(for: indexPath.section)?.title

0 commit comments

Comments
 (0)