Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a41cf14
[docs][router] Fix broken anchor in URL parameters hash support secti…
TheSeydiCharyyev May 13, 2026
3783d15
[expo-camera][iOS] Fix itf14 barcode type not detecting Interleaved 2…
mduchev May 13, 2026
06ac7f0
[expo-router][expo-observe] emit pageFocused after screen did render …
Ubax May 13, 2026
1c8096a
[expo-observe] rename ttr + isInitial with warm and cold ttr (#45697)
Ubax May 13, 2026
1f61e3e
[expo-router] add `tabBarRespectsIMEInsets` android property (#45679)
Ubax May 13, 2026
be32741
[screen-orientation][iOS] fix infinite recursion in supportedInterfac…
rayabelcode May 13, 2026
71fc139
[docs] add a check for `Set` and `Map` to not create links to them (#…
HubertBer May 13, 2026
9b41822
[JSI] Hash JSI headers for cache invalidation (#45745)
tsapeta May 13, 2026
669c331
[updates][android] Fix app restart when not using ReactApplication (#…
gabrieldonadel May 13, 2026
9155a0d
Update prettier to v3.8.3 (#45729)
zoontek May 13, 2026
ffd7cb1
[expo-router][expo-observe] fix ttr for preloaded routes (#45725)
Ubax May 13, 2026
8024446
[observe-tester] Add example tab (#45665)
Ubax May 13, 2026
62a1bfe
[core][Android] Improve complation time of `JavaCallback` (#45744)
lukmccall May 13, 2026
bbe7f4e
[JSI] Extract `PODS_ROOT` fallback logic into shared helper (#45747)
tsapeta May 13, 2026
d0f503a
Bump addressable from 2.8.9 to 2.9.0 (#45342)
dependabot[bot] May 13, 2026
544eec6
docs(expo-router): add note about custom suspense fallbacks only bein…
hassankhan May 13, 2026
f4c00c5
chore(eslint-config-expo,eslint-config-universe): bump to `eslint-plu…
hassankhan May 13, 2026
599d6e4
[core][Android] Restructure some headers (#45752)
lukmccall May 13, 2026
30f8ac3
[cli] Migrate to first-party OAuth flow (#44938)
byronkarlen May 13, 2026
9158ef6
[app-metrics][observe][ios] Replace JSON storage with SQLite (#45539)
tsapeta May 13, 2026
1182907
Move pointerEvents from component prop to style property (#45519)
EvanBacon May 13, 2026
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: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ GEM
minitest (>= 5.1)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
addressable (2.8.9)
addressable (2.9.0)
public_suffix (>= 2.0.2, < 8.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ export default function ImagePickerAssetsList(
): React.ReactElement | void {
return (
<View>
{result.assets?.map((asset, index) => <AssetViewContainer key={index} asset={asset} />)}
{result.assets?.map((asset, index) => (
<AssetViewContainer key={index} asset={asset} />
))}
</View>
);
}
Expand Down
Loading
Loading