Skip to content

Commit

Permalink
fix(Sheet): fix Sheet intermediate hanging when touch ends above it (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mournfulCoroner authored Oct 13, 2023
1 parent 615dc22 commit 38e6308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Sheet/SheetContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ class SheetContent extends React.Component<SheetContentInnerProps, SheetContentS
accelerationY > ACCELERATION_Y_MAX
) {
this.hide();
} else if (deltaY > 0) {
} else {
this.show();
}
};
Expand Down

0 comments on commit 38e6308

Please sign in to comment.