File tree Expand file tree Collapse file tree
src/design-system/bottomSheets Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { useColorScheme } from '@baca/contexts'
21import { Box } from '@baca/design-system/components/Box'
32import { useSafeAreaInsets , useTheme } from '@baca/hooks'
43import {
@@ -27,7 +26,6 @@ export const BottomSheet = ({
2726 bottomSheetRef,
2827} : BottomSheetProps ) => {
2928 const { top } = useSafeAreaInsets ( )
30- const { isDarkTheme } = useColorScheme ( )
3129 const { colors } = useTheme ( )
3230
3331 const handleClose = useCallback ( ( ) => {
@@ -53,7 +51,7 @@ export const BottomSheet = ({
5351 } }
5452 handleIndicatorStyle = { {
5553 // eslint-disable-next-line react-native/no-inline-styles
56- backgroundColor : isDarkTheme ? colors . alpha . black [ 100 ] : colors . alpha . white [ 100 ] ,
54+ backgroundColor : colors . alpha . black [ 100 ] ,
5755 } }
5856 >
5957 < BottomSheetView >
You can’t perform that action at this time.
0 commit comments