Skip to content

Commit e33fc84

Browse files
committed
fix: missing header in native platforms.
Signed-off-by: Krishna Gupta <[email protected]>
1 parent 8e5460f commit e33fc84

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/components/DecisionModal.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,12 @@ function DecisionModal({title, prompt = '', firstOptionText, secondOptionText, o
4747
>
4848
<View style={[styles.m5]}>
4949
<View>
50-
<Header
51-
title={title}
52-
containerStyles={[styles.alignItemsCenter, styles.mb4]}
53-
/>
50+
<View style={[styles.flexRow, styles.mb4]}>
51+
<Header
52+
title={title}
53+
containerStyles={[styles.alignItemsCenter]}
54+
/>
55+
</View>
5456
<Text>{prompt}</Text>
5557
</View>
5658
{firstOptionText && (

0 commit comments

Comments
 (0)