diff options
author | Tymoteusz Boba <Tymoteusz.Boba@gmail.com> | 2023-06-14 23:35:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 16:35:06 -0500 |
commit | 272ddeb7e21e5c8bf4f125b6b2e3bb8f53e47586 (patch) | |
tree | 49483ce333ba653155f0cad528bc7f1efbe65b6e /src | |
parent | 9b9f339e3e72587bb31e2d1b6e77e9ec804302bf (diff) | |
download | voidsky-272ddeb7e21e5c8bf4f125b6b2e3bb8f53e47586.tar.zst |
Upgrade Reanimated from 2.14.4 to 3.1.0 (#753)
* Update Reanimated API to v3 * Fix failing tests after updating Reanimated * Include changes from package.json in Reanimated library to patch * upgrade reanimated to 3.3.0 * remove patch * upgrade bottom sheet --------- Co-authored-by: Ansh Nanda <anshnanda10@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/view/shell/index.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/view/shell/index.tsx b/src/view/shell/index.tsx index 36f7442dc..08a93868b 100644 --- a/src/view/shell/index.tsx +++ b/src/view/shell/index.tsx @@ -16,7 +16,6 @@ import {usePalette} from 'lib/hooks/usePalette' import * as backHandler from 'lib/routes/back-handler' import {RoutesContainer, TabsNavigator} from '../../Navigation' import {isStateAtTabRoot} from 'lib/routes/helpers' -import {isAndroid} from 'platform/detection' import {SafeAreaProvider} from 'react-native-safe-area-context' import {useOTAUpdate} from 'lib/hooks/useOTAUpdate' @@ -53,7 +52,6 @@ const ShellInner = observer(() => { onOpen={onOpenDrawer} onClose={onCloseDrawer} swipeEdgeWidth={winDim.width / 2} - useLegacyImplementation={isAndroid ? true : false} // we need to use legacy implementation on Android https://github.com/software-mansion/react-native-reanimated/issues/3049 swipeEnabled={ !canGoBack && store.session.hasSession && |