Skip to content

Commit 84406d2

Browse files
committed
fix styles for handle indicator
1 parent b7494cc commit 84406d2

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/design-system/bottomSheets/BottomSheet.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { useColorScheme } from '@baca/contexts'
21
import { Box } from '@baca/design-system/components/Box'
32
import { useSafeAreaInsets, useTheme } from '@baca/hooks'
43
import {
@@ -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>

0 commit comments

Comments
 (0)