Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/expo-modules-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

### 🐛 Bug fixes

- [iOS] Fixed `field.options.insert()` silently failing in `fieldsOf()` due to mutation on protocol existential. ([#43341](https://github.com/expo/expo/pull/43341) by [@just1and0](https://github.com/just1and0))

### 💡 Others

## 55.0.10 — 2026-02-20
Expand Down
2 changes: 1 addition & 1 deletion packages/expo-modules-core/ios/Core/Records/Record.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ internal func fieldsOf(_ record: Record) -> [AnyFieldInternal] {
guard var field = value as? AnyFieldInternal, let key = field.key ?? convertLabelToKey(label) else {
return nil
}
field.options.insert(.keyed(key))
field.options = field.options.union([.keyed(key)])
return field
}
}
Expand Down
Loading