From dbe8f8a2d124b043d2889d23dc9c6785448c64fa Mon Sep 17 00:00:00 2001 From: Soroush Khanlou Date: Tue, 27 Jan 2026 16:58:45 -0500 Subject: [PATCH 1/2] handle implicitly unwrapped optional --- .../Sources/AccessibilityComposition.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BlueprintUIAccessibilityCore/Sources/AccessibilityComposition.swift b/BlueprintUIAccessibilityCore/Sources/AccessibilityComposition.swift index b55def67b..c83053dc5 100644 --- a/BlueprintUIAccessibilityCore/Sources/AccessibilityComposition.swift +++ b/BlueprintUIAccessibilityCore/Sources/AccessibilityComposition.swift @@ -103,7 +103,7 @@ extension AccessibilityComposition { { allContent.append(contentsOf: content) } - allContent.append(contentsOf: provider.accessibilityCustomContent) + allContent.append(contentsOf: provider.accessibilityCustomContent ?? []) } } From d4ba6de566341bba1e907f0a2e8ec5306aa290f9 Mon Sep 17 00:00:00 2001 From: Soroush Khanlou Date: Tue, 27 Jan 2026 17:04:46 -0500 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62f022b45..5199d15b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- `accessibilityCustomContent` is an IUO and nils should be handled + ### Added ### Removed