Skip to content

Commit

Permalink
closes #1322; fix: tracking sheet position
Browse files Browse the repository at this point in the history
  • Loading branch information
nyagami committed Nov 26, 2024
1 parent dabe471 commit c72808d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/screens/novel/components/Tracker/TrackSheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ const TrackSheet = ({ bottomSheetRef, novel, theme }: Props) => {

return (
<>
<BottomSheet bottomSheetRef={bottomSheetRef} snapPoints={[130, 200]}>
<BottomSheet
bottomSheetRef={bottomSheetRef}
snapPoints={trackedNovel ? [180] : [130]}
>
<View
style={[
styles.contentContainer,
Expand Down

0 comments on commit c72808d

Please sign in to comment.