diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-30 17:03:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 17:03:38 -0800 |
commit | 23ad3ad98b5b4c76ceb06bd4d4cffb9e5b42d087 (patch) | |
tree | 9a332e6287ab34fa74bb0ad234b80c1b25a8ebfa /src/view/shell/Composer.web.tsx | |
parent | 5839d2a30ca19499617190970e7a6376f3724df5 (diff) | |
download | voidsky-23ad3ad98b5b4c76ceb06bd4d4cffb9e5b42d087.tar.zst |
Various fixes (#2053)
* Fix invite code translations (plural api not availabe in ios) * Speed up the composer animation a smidge
Diffstat (limited to 'src/view/shell/Composer.web.tsx')
-rw-r--r-- | src/view/shell/Composer.web.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/Composer.web.tsx b/src/view/shell/Composer.web.tsx index d8f4648fe..73f9f540e 100644 --- a/src/view/shell/Composer.web.tsx +++ b/src/view/shell/Composer.web.tsx @@ -25,10 +25,10 @@ export function Composer({}: {winHeight: number}) { style={styles.mask} aria-modal accessibilityViewIsModal - entering={FadeIn.duration(150)} + entering={FadeIn.duration(100)} exiting={FadeOut}> <Animated.View - entering={FadeInDown.duration(200)} + entering={FadeInDown.duration(150)} exiting={FadeOut} style={[ styles.container, |