File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ export const SurveyModal = (props: { bridge: AirshipBridge<void> }) => {
140140 const animatedStyle = useAnimatedStyle ( ( ) => ( {
141141 height : inputHeight . value ,
142142 width : '100%' ,
143- opacity : inputHeight . value ? 1 : 0
143+ opacity : inputHeight . value !== 0 ? 1 : 0
144144 } ) )
145145
146146 return (
@@ -293,7 +293,7 @@ const SurveyModal2 = (props: {
293293 const animatedStyle = useAnimatedStyle ( ( ) => ( {
294294 height : inputHeight . value ,
295295 width : '100%' ,
296- opacity : inputHeight . value ? 1 : 0
296+ opacity : inputHeight . value !== 0 ? 1 : 0
297297 } ) )
298298
299299 return (
@@ -370,7 +370,8 @@ const SurveyModal2 = (props: {
370370
371371const getStyles = cacheStyles ( ( theme : Theme ) => ( {
372372 titleContainer : {
373- flexDirection : 'column'
373+ flexDirection : 'column' ,
374+ paddingHorizontal : theme . rem ( 0.5 )
374375 } ,
375376 radioContainer : {
376377 alignItems : 'flex-start'
You can’t perform that action at this time.
0 commit comments