From 0b43ed427116fa35688a4f75dc24ff1555c24b3b Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 29 Dec 2025 18:19:11 +0200 Subject: [PATCH] fix type error --- src/components/Dialog/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index 966f127256..374dc94cd8 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -11,6 +11,7 @@ import { } from 'react-native' import { KeyboardAwareScrollView, + type KeyboardAwareScrollViewRef, useKeyboardHandler, useReanimatedKeyboardAnimation, } from 'react-native-keyboard-controller' @@ -256,7 +257,7 @@ export const ScrollableInner = React.forwardRef( {paddingBottom}, contentContainerStyle, ]} - ref={ref} + ref={ref as React.Ref} showsVerticalScrollIndicator={IS_ANDROID ? false : undefined} {...props} bounces={nativeSnapPoint === BottomSheetSnapPoint.Full}