Skip to content

Commit

Permalink
fix(swap): modal screen
Browse files Browse the repository at this point in the history
  • Loading branch information
banklesss committed Oct 9, 2023
1 parent d7625af commit f834cef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/wallet-mobile/src/features/Modal/ModalScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ export const ModalScreen = () => {
<Animated.View
style={[
{
height: height,
height: windowHeight,
transform: [
{
translateY: current.progress.interpolate({
inputRange: [0, 1],
outputRange: [height, windowHeight - 500],
outputRange: [windowHeight, windowHeight - height],
extrapolate: 'clamp',
}),
},
Expand Down

0 comments on commit f834cef

Please sign in to comment.