Skip to content

Commit e1e255d

Browse files
committed
update patches
1 parent 195a014 commit e1e255d

3 files changed

Lines changed: 9 additions & 78 deletions

File tree

Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
diff --git a/node_modules/expo-router/build/global-state/routing.js b/node_modules/expo-router/build/global-state/routing.js
2-
index 2fba9d1..9cce0c9 100644
2+
index 764db0b..3eae9d2 100644
33
--- a/node_modules/expo-router/build/global-state/routing.js
44
+++ b/node_modules/expo-router/build/global-state/routing.js
5-
@@ -173,6 +173,10 @@ function getNavigateAction(state, parentState, type = 'NAVIGATE') {
6-
else if (type === 'REPLACE' && parentState.type === 'tab') {
5+
@@ -226,6 +226,10 @@ function getNavigateAction(actionState, navigationState, type = 'NAVIGATE') {
6+
if (type === 'REPLACE' && navigationState.type === 'tab') {
77
type = 'JUMP_TO';
88
}
99
+
1010
+ // https://github.com/expo/expo/issues/26211
1111
+ params.initial = false
12-
+
12+
+
1313
return {
1414
type,
15-
target: parentState.key,
15+
target: navigationState.key,

patches/react-native-keyboard-aware-scroll-view+0.9.5.patch

Lines changed: 0 additions & 69 deletions
This file was deleted.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
diff --git a/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts b/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts
2-
index f634ac7..c734a34 100644
2+
index cf96941..04a5810 100644
33
--- a/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts
44
+++ b/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts
5-
@@ -87,13 +87,9 @@ export function getReduceMotionFromConfig(config?: ReduceMotion) {
5+
@@ -121,13 +121,9 @@ export function getReduceMotionFromConfig(config?: ReduceMotion) {
66
*/
77
export function getReduceMotionForAnimation(config?: ReduceMotion) {
88
'worklet';
@@ -11,10 +11,10 @@ index f634ac7..c734a34 100644
1111
- if (!config) {
1212
- return undefined;
1313
- }
14-
14+
1515
- return getReduceMotionFromConfig(config);
1616
+ // we must always return false here in order to prevent bottomsheets from crash on devices with 'reduce motion/animation' setting turned on
1717
+ return false;
1818
}
1919

20-
function applyProgressToMatrix(
20+
function applyProgressToMatrix(

0 commit comments

Comments
 (0)