1+ diff --git a/node_modules/@discord/bottom-sheet/src/components/bottomSheet/BottomSheet.tsx b/node_modules/@discord/bottom-sheet/src/components/bottomSheet/BottomSheet.tsx
2+ index 2897fef..9a8505e 100644
3+ --- a/node_modules/@discord/bottom-sheet/src/components/bottomSheet/BottomSheet.tsx
4+ +++ b/node_modules/@discord/bottom-sheet/src/components/bottomSheet/BottomSheet.tsx
5+ @@ -1382,7 +1382,8 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
6+ if (containerHeight !== _previousContainerHeight) {
7+ animationSource = ANIMATION_SOURCE.CONTAINER_RESIZE;
8+ animationConfig = {
9+ - duration: 0,
10+ + // https://github.com/gorhom/react-native-bottom-sheet/pull/1497
11+ + duration: 1,
12+ };
13+ }
14+ }
15+ diff --git a/node_modules/@discord/bottom-sheet/src/components/bottomSheetHandleContainer/BottomSheetHandleContainer.tsx b/node_modules/@discord/bottom-sheet/src/components/bottomSheetHandleContainer/BottomSheetHandleContainer.tsx
16+ index 2219e0f..59f90ba 100644
17+ --- a/node_modules/@discord/bottom-sheet/src/components/bottomSheetHandleContainer/BottomSheetHandleContainer.tsx
18+ +++ b/node_modules/@discord/bottom-sheet/src/components/bottomSheetHandleContainer/BottomSheetHandleContainer.tsx
19+ @@ -92,10 +92,6 @@ function BottomSheetHandleContainerComponent({
20+ >
21+ <Animated.View
22+ key="BottomSheetHandleContainer"
23+ - accessible={true}
24+ - accessibilityRole="adjustable"
25+ - accessibilityLabel="Bottom Sheet handle"
26+ - accessibilityHint="Drag up or down to extend or minimize the Bottom Sheet"
27+ onLayout={handleContainerLayout}
28+ >
29+ <HandleComponent
30+ diff --git a/node_modules/@discord/bottom-sheet/src/utilities/animate.ts b/node_modules/@discord/bottom-sheet/src/utilities/animate.ts
31+ index 0ce4c9a..9562675 100644
32+ --- a/node_modules/@discord/bottom-sheet/src/utilities/animate.ts
33+ +++ b/node_modules/@discord/bottom-sheet/src/utilities/animate.ts
34+ @@ -4,6 +4,7 @@ import {
35+ withTiming,
36+ withSpring,
37+ AnimationCallback,
38+ + ReduceMotion,
39+ } from 'react-native-reanimated';
40+ import { ANIMATION_CONFIGS, ANIMATION_METHOD } from '../constants';
41+
42+ @@ -26,6 +27,8 @@ export const animate = ({
43+ configs = ANIMATION_CONFIGS;
44+ }
45+
46+ + configs.reduceMotion = ReduceMotion.Never;
47+ +
48+ // detect animation type
49+ const type =
50+ 'duration' in configs || 'easing' in configs
0 commit comments