From e5e79478b2ed391567f0c611affd4d42dad87ae7 Mon Sep 17 00:00:00 2001 From: Mounir Dhahri Date: Tue, 23 Jul 2024 19:00:38 +0200 Subject: [PATCH] fix: do not hide register to bid modal on android (#10509) --- src/app/AppRegistry.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/AppRegistry.tsx b/src/app/AppRegistry.tsx index 226378f4e14..3efc3c718d9 100644 --- a/src/app/AppRegistry.tsx +++ b/src/app/AppRegistry.tsx @@ -429,7 +429,7 @@ export const modules = defineModules({ AuctionRegistration: reactModule(RegistrationFlow, { alwaysPresentModally: true, hasOwnModalCloseButton: true, - fullBleed: true, + fullBleed: Platform.OS === "ios", screenOptions: { // Don't allow the screen to be swiped away by mistake gestureEnabled: false,