From ba109a74797c894c7ebf69b311a6563f44146aad Mon Sep 17 00:00:00 2001 From: Nouman Tahir Date: Thu, 21 Jul 2022 13:43:48 +0500 Subject: [PATCH] updated inputSupportModal tappable overlap to adapt to modal height --- .../inputSupportModal/container/inputSupportModal.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/organisms/inputSupportModal/container/inputSupportModal.tsx b/src/components/organisms/inputSupportModal/container/inputSupportModal.tsx index 5f826ca23..208c0bbdc 100644 --- a/src/components/organisms/inputSupportModal/container/inputSupportModal.tsx +++ b/src/components/organisms/inputSupportModal/container/inputSupportModal.tsx @@ -1,4 +1,4 @@ -import React, { Component } from 'react'; +import React from 'react'; import { View as AnimatedView } from 'react-native-animatable' import { Portal } from 'react-native-portalize'; import styles from '../children/inputSupportModal.styles'; @@ -22,15 +22,15 @@ export const InputSupportModal = ({children, visible, onClose}: InputSupportModa duration={300} animation='fadeInUp'> <> - + { Platform.select({ ios: ( - + {children} ), - android: {children}, + android: {children}, }) }